
:root {
  --primary-color: #0001BD;
  --secondary-color: #FE0002;
  --btn-purple:var(--primary-color);
  --dark-blue: #171C8F;
  --ultramarine-blue: #2c3cb4; 
  --dark-purple: #231f41;
  --old-lavender: #6f6b80; 
  --white-2: #f5f5f5; 
  --white-10: #ffffff1a; 
  --white: #fff;

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease; 
  --course-blue: #0056D2;
  --course-dark-blue: #00419E;
  --course-light-blue: #E5F0FF;
  --course-text-dark: #1F1F1F;
  --course-text-medium: #6E6E6E;
  --course-border-light: #DEDFE0;
  --course-bg-light: #F5F7F8;
  --course-bg-lighter: #F5F7FA;
  --bg-sector: url('../gthub_image/intro_bg.png');
}


/* Responsive Typography for CTA Section */
@media (max-width: 576px) {

  .pricing-card{
    width: 125%;
    margin-left: -30px
  }
}

 

.form-control{
  border-radius: 10px;
  border: 1px solid #ffb0f398;
}


body {
    font-family: Poppins, sans-serif !important;
    font-style: normal;
}


.hero-section .hero {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center; 
}

.hero-section .hero-content {
  width: 50%;
}

.bg-soft-primary {
  background-color: rgba(13,110,253,0.1);
  color: #0d6efd;
}


.border-gradient {
  position: relative;
  overflow: hidden;
}

.card-custom {
  background: white;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  height: 100%;
}

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

.border-gradient::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}

.border-gradient:hover::before {
  opacity: 0.1;
}

.hero-section .hero-image {
  position: relative;
}

.hero-section .hero-image img {
  width: 550px;
  height: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-section .purple-circle {
  width: 250px;
  height: 250px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  z-index: 1;
}
.cards-container {
  padding: 20px 50px;
  overflow: hidden;
  position: relative;
  justify-content: center;
  display: flex;
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-section .cards-wrapper::-webkit-scrollbar {
  display: none;
}

.suite-cards .card {
  background: white;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 300px; 
  flex-shrink: 0;
  height: auto;
  line-height: 0;
  transition: transform 0.7s ease, border 0.1s ease, box-shadow 0.3s ease;
  border: 2px solid var(--primary-color);

}

.suite-cards .card:hover {
  transform: translateY(-10px);
  border: 3px solid rgba(137, 64, 231, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.suite-cards .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.suite-cards .card p {
  color: #666;
  font-size: 14px;
}

.hero-section .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Add media queries for responsiveness */
@media (max-width: 768px) {
  .suite-cards .card {
    width: 200px;
  }

  .cards-wrapper {
    gap: 10px;
  }
}


@media (max-width: 1380px) { 
  .hero-section .cards-wrapper .card h5
  {
    font-size: medium; 
  }

  .hero-section .card img { 
    height: auto !important; 
  }

  .bg-feature
  { 
    height: auto!important;
  }

}

@media (max-width: 1080px) {
  #card-content .h-300 
  {
    height: auto!important;
  }
}

@media (max-width: 1000px) {
  .text-lg
  {
  font-size: 40px!important;
  }

  .hero-section .cards-wrapper
  {
    gap: 10px !important;
  } 

  .hero-section .purple-circle
  {
    width: 250px;
    height: 250px;
  }

  .hero-section .card p 
  {
    font-size: 11px!important;
  }

  .hero-section .hero-image {
    margin-top: 90px;
  }

  .orcaa-ecosystem .image-container { 
    display: none;
}

}

@media (max-width: 767px) {
   .purple-circle
   {
    display: none;
   }

   .hero-section .hero h1 {
    font-size: 30px!important;
    margin-top: 10px;
    text-align: center;
  }

  .hero-section .hero p{ 
    text-align: center;
  }

  .hero-section .cards-container
  {
    display: none;
  }

  .hero-section .hero {
    padding: 10px;
    display: flow;
    justify-content: space-around;
    align-items: center;
    height: auto
  }

  .hero-section .hero-content {
    width: auto;
    display: contents;
  }

  .usecase-card { 
    width: 253px!important;
  }

  .scrolling-wrapper { 
    width: 113%; 
  }

  .circle-decoration
  {
    display: none;
  }

  .ring
  {
    display: none;
  }

  .usecase-card {
    display: contents!important;
  }

  .feature-card
  {
    margin-top: 10px!important;
  }

  .scrolling-wrapper { 
    height: inherit!important; 
  }

  .event-topic-two { 
    font-size: 23pt !important; 
  }

 

}


.bg-sector
{
  background-image: url('../gthub_image/bg-sectors.png'); /* Replace with your image path */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; 
}

/* USE CASE */
.usecase-scroll {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.usecase-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.usecase-card {
  display: inline-block;
  white-space: normal;
  width: 400px;
  margin-right: 26px;
  vertical-align: top;
}

.usecase-image { 
  border-radius: 15px;
  padding: 20px;
}


.add-to-cart {
  background-color: #7a04be;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  color: white;
  width: 100%;
}

@media (min-width: 1200px) {
  .usecase-scroll {
      display: flex;
      justify-content: center;
      overflow-x: visible;
  }
}

/* Features Card */
.feature-card {
  max-width: 400px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px color(0, 0, 0,  10%);
  height: 100%;
  border: 2px solid var(--primary-color);
  font-size: 14px;
}


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

.feature-item {
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

.feature-item:hover {
  background-color: #f6f8fa;
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-text {
  flex-grow: 1;
  font-weight: bold;
}

.feature-subtext {
  font-size: 12px;
  color: #6e7681;
}

.feature-description {
  margin-left: 28px;
  margin-top: 8px;
  padding: 8px;
  font-size: 14px;
  color: #57606a;
  background-color: #f6f8fa;
  border-radius: 6px;
  display: none;
}

.feature-item.expanded .feature-description {
  display: block!important;
}

.feature-item i {
  color: #6e7681;
  transition: transform 0.2s;
}

.feature-item.expanded i {
  transform: rotate(90deg);
}

.featured-addons {
  margin-top: 24px;
  padding-top: 24px; 
}

.featured-title {
  color: #0969da;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}


a.nav-one .box-icon {
  margin-left: 5px; /* Space between "Register now" and the arrow */
}


/* Card styling */
.card {
  background-color: #ffffffb5;
  padding: 20px;
  border-radius: 30px; /* Adjust border-radius */
  text-align: center;
  box-shadow: 0 2px 5px color(0, 0, 0, 10%);
  width: 140px; /* Default width */
  height: 140px; /* Default height */
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Ensure pseudo-element stays within card bounds */
}

/* Card-specific styles */
.card-one,
.card-two,
.card-three,
.card-four {
  background: #f3f3f3;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.card img {
  width: 100%; /* Ensure the image takes the full width of the card */
  height: auto;
  transition: transform 0.3s ease-in-out; /* Smooth transition for zoom */
  transform: scale(1.0); /* Default scaling */
}

.card-one:hover img,
.card-two:hover img,
.card-three:hover img,
.card-four:hover img {
  transform: scale(1.1); /* Zoom the image slightly on hover */
  z-index: 2; /* Ensure image appears above the card */
}

.fade-enter, 
.fade-leave-to {
  opacity: 0;
}


/* Style for the tab container */
.nav-tabs {
  display: flex;
  background-color: #6c757d1c;
  border-radius: 20px;
  padding: 5px;
  margin: 40px auto 0;
  max-width: 100%; /* Allow full width of container */
  justify-content: center; /* Center the tabs */
  width: 550px !important;
  margin-top: 40px !important;
}





/* Style for the active tab */
.nav-link.active {
    width: 150px;
    margin-left: 5px;
    border-radius: 20px; 
    margin-top: 3px; 
    background: linear-gradient(
        90deg,
        var(--primary-color),
        #0001BD 33.5%,
        #FE0002 
    );
    position: relative;
    color: white !important;
}

/* Ensure that there is no border or shadow around the tabs */
.nav-link::before,
.nav-link:hover::before {
    content: '';
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


/* Style for the card */
.sectors-card {
    width: 100%; /* Make the width 100% to fit the container */
    max-width: 1300px; /* Ensure it doesn’t get too wide on larger screens */
    height: auto; /* Allow height to adjust based on content */
    margin-top: 30px;
    margin-bottom: 105px;
    background: #f3f3f300;
    border: 0;
    border-radius: 20px;
    padding: 10px; /* Add padding inside the card */
    display: flex;
    flex-wrap: wrap; /* Ensure the contents wrap on smaller screens */
    
}

  
  .dropdown-toggle::after {
    vertical-align: middle;
  }


.Education-text{
  font-size: 18px !important;
}

button#Parents-tab, button#Internship-tab, button#Education-tab, button#Corporates-tab {
  color: black;
}



.contact-us-image {
  height: auto !important; /* Full height of the viewport */
  width: 100vw;  /* Full width of the viewport */
  background-image: url('../gthub_image/Contact_us_background.png'); /* Replace with your image path */
  background-size: cover; /* Cover the entire page */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent image repetition */
  position: relative; /* Relative position for child elements */
}

.Education-text{
    font-size: 22px;
}



  .payment-background{
    background-color: #f3f3f3; /* Light background color */
    
    background-size: cover; /* Ensures the image covers the whole container */
    background-position: right; /* Centers the image */
    
    max-width: fit-content;
  }
  
  
  /* Buttons Styling */
  .scroll-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 200px;
    width: 35px;
  }
  
  .scroll-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  .scroll-btn:hover {
    background-color: #737373;
    
  }
  
  .scroll-btn.me-2 {
    margin-right: 10px; /* Add space between Prev and Next buttons */
  }
  


.scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    padding: 0;
    border: none; /* Optional: Remove default border */
    background-color: #f0f0f0; /* Optional: Add background color */
    cursor: pointer;
    border: 1px solid black;
  }
  
  .button-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Adjust font size as needed */
    color: black;
    
  }
  
  .payment-logo{
   width: 90px;
   height: 40px;
   margin-top: 20px;
   margin-right: 10px;
  }

  .custom-row {
    display: flex;
    align-items: center;
  }
  
  .custom-payment-logo {
    width: 55px;
    height: 30px;
    margin-left: 10px; /* Adjust spacing between the image and the text */
    margin-top: 10px;
  }
  
  .orcaa-main-logo {
    width: 95px;
    height: 50px;
    margin-left: 10px; /* Adjust spacing between the image and the text */
    
  }
  

  .custom-text {
    margin-left: -13px;
    margin-top: 18px;
    font-size: 25px; /* Adjust font size if necessary */
  }

  .payment-button-one,
  .payment-button-two{
    width: 140px;
    border-radius: 10px;
  }

  .payment-button-two{
    background-color: white;
    border: none;
    color: black;
  }
  
  .payment-button-two:hover{
    background-color: grey;
  }


  .footer-background{
    background: url('../gthub_image/footer_background.png') no-repeat center center scroll;
    background-size: cover;
    height: auto; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .request-demo-btn{
    width: 140px;
  }

  .boost-employ-btn{
    width: 190px;
  }

  .support-stu-btn{
    width: 100px;
    margin-top: 40px !important;
    
  }

  .footer-color{
    background-color: #525252;
  }



  .glow {
    color: #303030; /* Light color for glowing effect */
    text-shadow: 0 0 10px rgb(255, 255, 255); /* Blue glow */
  }

  .logo-text {
    white-space: nowrap; /* Prevent text from wrapping */
    display: inline-block; /* Ensures it behaves like inline content */
  }
  

  /* CSS animation for entering from below */
/* CSS animation for entering from below */
.fade-up-enter-active, .fade-up-leave-active {
  transition: transform 0.8s ease, opacity 0.8s ease; /* Controls speed and smoothness */
}

.fade-up-enter, .fade-up-leave-to {
  transform: translateY(30px); /* Start 30px below the original position */
  opacity: 0; /* Initial opacity */
}

.fade-up-enter-to {
  transform: translateY(0); /* End at original position */
  opacity: 1; /* Fully visible */
}

.testimonials-image{


    background: url('@/assets/images/Testimonials_background.png') no-repeat center center scroll;
    background-size: cover; 
    width: 100vw; /* Full viewport width */
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .features-page {
    height: 100vh; /* Full height of the viewport */
    background-color: #efefef;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* This makes the parent element a reference point for positioning child elements */
  }
.features-card{
  width: 98%;
  margin: 15px;
  height: 88vh;
  background-color: #efefef;
}

.features-points {
  margin-bottom: 20px !important;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  width: 100% !important; /* Full width of the container */
  height: auto; /* Full height of the viewport for vertical centering */
  margin: 0 !important; /* Remove custom margin */
  padding-left: 7px !important; /* Left padding */
  padding-right: 0 !important; /* Right padding */
  font-size: 12px !important; /* Font size for smaller devices */
}
.features-display-card {
  width: 650px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border: none !important;
  background-color: #21252908;
  box-shadow: none; /* Remove shadows */
}

.features-display-card video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure video covers the card area */
  border-radius: inherit; /* Ensure video matches card border radius */
}

.custom-logo-container {
  display: flex;
  align-items: center; /* Vertically center the image and text */
  margin-left: -7px;
  
  
}


.icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8); /* Circle background */
  margin-right: 10px; /* Space between icon and text */
}

.icon {
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}

.contact-form{
  margin-top: 200px !important;
}

.contact-info{
  margin-top: 90px !important;
}


/*-------------------------------------------------------------------------------------------------*/
.nav-one-topic {
  font-size: 9px !important;
  text-align: left !important; /* Align text to the left */
}

.nav-one-topic-two {
  font-size: 9px !important;
}

.nav-one {
  white-space: nowrap; /* Prevent text from wrapping */
}
@media (max-width: 768px) {
  .payment-card {
    min-width: 200px; /* Adjust card width for mobile */
  }

 
}



@media (max-width: 576px) { /* For small devices */
  .footer-background{
    height: 850px !important;
  }
  .contact-info{
    margin-bottom: -170px !important;
  }

  .carousel-item {
    height: auto !important; /* Adjust this value as needed, e.g., 80% of the viewport height */
  }


  .product-background-card {
    margin-top: 0 !important;
    margin-left: 40px !important;
    
}

  /*page-four*/
  .features-points {
    font-size: 11px !important; /* Adjust font size for smaller screens */
    padding-left: 5px !important; /* Adjust padding for smaller screens */
}

  .features-page{
    height: auto !important;
  }
  .features-display-card{
    width: 350px !important;
    height: 350px !important;
    margin-left: -10px !important;
  }

  .features-display-card {
    width: 100% !important; /* Make the card width 100% of the container on mobile */
    height: auto !important; /* Auto height to allow video to scale properly */
}

.features-display-card video {
    width: 100% !important; /* Ensure the video takes full width */
    height: auto !important; /* Allow video to maintain aspect ratio */
    object-fit: contain !important; /* Contain the video within the card without clipping */
}

.features-details {
  text-align: center !important;
  margin-top: 30px !important;
  font-size: 16px !important; /* Adjust font size for smaller screens if necessary */
}
  .features-topic {
    
    font-size: 16px !important; /* Adjust the font size for smaller screens if necessary */
}


  .card-container{
    margin-top: 10px !important;
    margin-bottom: 60px !important;
    align-items: center !important;
  }
  .icon-card {
    width: 117px !important;
    height: 117px !important;
  }

}



.features-list {
  list-style-type: disc; /* Use bullets */
  padding-left: 20px; /* Space between bullets and text */
  margin-top: 10px; /* Add some space at the top */
  width: 80px !important; /* Set the maximum width to control content overflow */
  word-wrap: break-word; /* Ensure long words wrap */
}


.features-display-card {
  width: 500px; /* Set card width */
  height: 350px; /* Set a specific height for the card */
  overflow: hidden !important; /* Prevent overflow of video */
}

.nav-tabs .nav-link
{
width: max-content !important;
}



.btn-purple{
  color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100% !important;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.card-header {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;
}

.card-content {
  padding: 30px;
}

.recommended {
  border: 2px solid #ffc107;
}

.orcaa-price {
  font-size: 1rem;
  font-weight: bold;
  margin: 5px 0;
  text-align: center;
}

.gb-amount {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.feature-list li {
  margin: 15px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

#feature-setion .feature-list li:before
{ 
display: none;
}


.order-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  margin-top: 20px;
  transition: background 0.3s ease;
  width: 100%;
}


.free-connection {
  color: #666;
  font-size: 0.9rem;
  margin-top: 15px;
  text-align: center;
}

.recommendation-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffc107;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.recommendation-badge i {
  color: white;
}

@media (max-width: 767px) {
  .recommendation-badge {
    display: none;
  }
}

.bg-grey
{
  background-color: var(--bg-grey) !important;
}

.text-xxs{
  font-size: var(--text-xxs);
}

/*New Nav*/

.navbar-nav .dropdown-menu {
  position: absolute;
  left: 0;
  min-width: 100%;
}

/* Ensure dropdowns are visible */
.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


@media screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
  .login-button{
    font-size: 13px;
  }
}

.cta-card {
  background: 
    linear-gradient(135deg, black 5%, rgb(40, 40, 40) 95%),
    url('../gthub_image/intro_bg.png') center/cover;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  display: flex;
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: flex-end; /* Push content to the bottom */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.058);
  position: relative;
  isolation: isolate; /* Ensures the blur effect stays inside the card */
  overflow: hidden; /* Prevents blur from leaking outside */
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../gthub_image/intro_bg.png') center/cover;
  filter: blur(3px); /* Adjust blur strength (e.g., 4px, 8px, 12px) */
  z-index: -1;
  opacity: 0.4; /* Makes the image slightly transparent */
}


.intro-title{
  color: rgb(8, 14, 203) !important;
}

.into-description{
  color:  white;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-top: -10px !important;
  margin-bottom: 20px !important;
}

.contact-us{
  background : var(--primary-color);
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
}

.contact-us:hover{
  background : var(--secondary-color);
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
}

.btn-sm {
  background: var(--primary-color);
  border-radius: 30px !important;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;        /* Increased from default */
  padding: 0.5rem 1rem;      /* More space inside button */
  line-height: 1.4;          /* Better vertical alignment */
}

.btn-sm:hover {
    background-color:var(--primary-color) !important;
    transform: translateY(-2px);
}



/* Navbar Styles */
.custom-navbar { 
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 10%);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 12px;
    position: relative;
    transition: color 0.3s;
}


.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
 

.navbar-nav .nav-button {
    margin-left: 8px;
}

.navbar-toggler
{
    font-size: 13px;
    border: transparent;
}

.btn-outline-success {
    border-color:#0072CE;
    color:#0072CE;
}

.btn-outline-success:hover {
    background-color:#0072CE;
    color: white;
}

.logo-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.logo-text {
    color:#0072CE;
    font-weight: 600;
}


.call-to-action .card {
    height: 50vh;
    border-radius: 15px;
    border: none;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 50%);
}

.call-to-action .card .card-img-overlay { 
    overflow: hidden;
}

/* Mobile-specific adjustments */
@media (width <= 1024px) {
  .call-to-action .card {
      min-height: 200px; /* Minimum height on mobile */
      background-color: rgba(0, 0, 0, 0.5);

  }
  
  .call-to-action .card .card-img {
      height: 100%;
      min-height: 200px; /* Ensure image has minimum height */
      object-fit: cover; /* This prevents stretching */
      object-position: left; /* Centers the image */
  }
  
  .call-to-action .card .card-img-overlay {
      padding: 1rem; /* Smaller padding on mobile */
  }
  
  .call-to-action .btn {
      width: auto; /* Ensure button isn't too wide */
      padding: 0.5rem 1rem; /* Adequate padding */
  }
}

.card-green {
    background-color: #2e7d32;
    color: white;
}

.card-dark {
    background-color: #212121;
    color: white;
}



.circle-overlay {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 10%);
    top: -50px;
    right: -50px;
}


.header-card-secondary {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: url('images/epftechfund/dsi_poster_2.png');
  background-clip: border-box; 
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
}


/* Main grid layout */
.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

/* Program card styling */
.programme-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 10%);
}

/* Card icon styling */
.card-icon {
    background-color:var(--primary-color); /* Navy blue similar to image */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-icon ion-icon, .card-icon i {
    font-size: 26px;
}

/* Card text content */
.card-title {
    margin: 0 0 5px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-meta {
    color: #6c757d;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}



/* Modal styling */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    padding: 15px 20px;
}

.modal-body {
    padding: 0;
}

.modal-body p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.program-img-size {
    max-height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

/* Table styling in modal */
.modal-body table {
    margin-bottom: 0;
}

.modal-body th {
    font-weight: 600;
    color: #495057;
}


/* Add this section to ensure 3 cards per row above 768px */
@media (min-width: 769px) {
  .grid-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr) !important; /* 3 cards per row */
      gap: 20px; /* Spacing between cards */
  }
}

/* Navbar styles */
.navbar {
  box-shadow: 0 1px 3px color(rgba(0, 0, 0, 0.05));
  padding: 10px 0;
  }
  
  .navbar-brand img {
    height: 50px;
  }

  
  .dropdown-toggle::after {
    vertical-align: middle;
  }
  
  .navbar .btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
  }
  
  .btn-login {
    color: #333;
    background: transparent;
  }
  
  /* Hero section */
  .hero {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
    background-color: white;
  }
  
  .hero .small-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
  }
  
  .hero .color-text {
    font-size: 1.2rem;
    font-weight: 200;
    margin-bottom: 0;
    color: var(--primary-orange);
  }
  
  .hero h1 {
    font-size: 2.0rem;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .hero-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 30px auto 0;
  }
  
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .navbar .btn {
        margin: 5px;
    }
  }
  
  @media (min-width: 0px) and (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .color-text {
        font-size: 2rem;
    }
  }
  
   
  .courses-section {
    background-color: var(--course-bg-lighter);
  }
  
  .explore-section {
    padding: 4rem 0;
  }
  
  .explore-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--course-text-dark);
  }
  
  .explore-section .category-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--course-border-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--course-text-dark);
    height: inherit;
  }
  
  .explore-section .category-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 10%);
    transform: translateY(-2px);
  }
  
  .explore-section .category-img {
    
    object-fit: cover;
    border-radius: 10px;
  }
  
  .explore-section .category-info {
    padding: 1rem;
  }
  
  .explore-section .category-info h3 {
    font-size: 12px;
    margin-bottom: 0.25rem;
  }
  
  .explore-section .category-info p {
    font-size: 0.875rem;
    color: var(--course-text-medium);
    margin-bottom: 0;
  }
  
  /* Mobile responsive adjustments */
  @media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-content {
        margin: 0 auto 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
  }
  
  .footer {
    background-color: black;
  }
  
  .footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    transition: opacity 0.2s;
  }
  
  .footer .social-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .footer .social-icon:hover {
    opacity: 0.8;
  }
  
  .copyright {
    color: var(--course-text-medium);
    font-size: 0.875rem;
  }
  
  .rounded-20
  {
    border-radius: 20px;
  }
  

  .course-image-container {
    height: 200px; /* Fixed height for all course image containers */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
 

   .course-image {
    width: 100%;
    height: 200px; /* set a fixed height */
    object-fit: contain;
    background: #f8f9fa;
    display: block;
}
  
  /* Main container */
.courses-container {
  position: relative;
  width: 100%;
  min-height: 600px; /* Adjust as needed */
  background-color: #f9fafb;
  padding: 40px 20px;
  overflow: hidden;
}

.card-bg {
  position: relative;
  background-color: #fff;
  min-height: 400px; /* Adjust as needed */
  overflow: hidden;
}

/* Diagonal background container */
.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Ensures clicks pass through to content */
  overflow: hidden;
  border-radius: 20px; /* Match your rounded-20 class */
}

/* Primary diagonal (darker purple) */
.diagonal-primary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 88%;
  height: 80%;
  background-color:var(--primary-color);
  clip-path: polygon(100% 30%, 50% 100%, 100% 100%);
}

/* Secondary diagonal (lighter purple) */
.diagonal-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-color:var(--secondary-color);
  clip-path: polygon(100% 0, 30% 100%, 100% 100%);
}

.btn-add-cart{
  background-color:var(--secondary-color);
  font-weight: 500;
  border-radius: 0.3rem !important;
}

.btn-add-cart:hover {
  background-color:var(--primary-color);
  transform: translateY(-2px);
}

.features-intro {
  border-radius: 12px;
}

