/* Transparent Navbar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
/* Loading Spinner Styles */
html {
  scroll-behavior: smooth;
}
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Make sure it appears on top of all content */
}

.spinner {
  border: 8px solid #f3f3f3; /* Light gray background for the spinner */
  border-top: 8px solid #3498db; /* Blue color for the rotating part */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1.5s linear infinite; /* Spinning animation */
}

/* Animation to rotate the spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Optional: Styling for page content */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar Styles */
body {
	  background: linear-gradient(to right, #252746, #2f3d5b); /* Gradient background */

}
#navbar {
  background-color: transparent ; /* Default transparent background */
  box-shadow: none !important; /* Remove shadow */
  transition: all 0.3s ease; /* Smooth transition for background and border */
  z-index: 9999; /* Ensure navbar stays on top */
  Padding:10px;
}
/* Override the default navbar-toggler icon to white */
/* Custom Navbar Toggler Button */


/* Custom Navbar Toggler Icon (Hamburger Icon) */


/* Navbar Text Color */
.navbar-nav .nav-link {
  color: white !important; /* White text for navbar items */
  font-size: 1.1rem; /* Adjust font size */
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Navbar item hover effect */
.navbar-nav .nav-link:hover {
  color: #f1f1f1 !important; /* Slightly lighter color on hover */
}

/* Fixed navbar to the top */
.fixed-top {
  top: 0;
  position: fixed;
  width: 100%;
}

.navbar-scrolled {
  background-color: #2f3d5b !important; /* Dark background when scrolled */
  border-bottom: 1px solid white; /* Add a border when scrolling */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Optional shadow when scrolling */
}
.navbar-brand{
	margin-left:15px;
}
.navbar-toggler {
  border-color: black !important; /* Light border color (grayish) */
  background-color: #333333 !important; /* Dark background matching your theme */
}

/* Custom Navbar Toggler Icon (Hamburger Icon) */
.navbar-toggler-icon {
  background-color: #cccccc !important; /* Lighter grayish color for icon */
}
/* Navbar on mobile */
@media (max-width: 768px) {
  /* Ensure the navbar remains transparent on mobile */
  #navbar {
    background-color: transparent ; /* Ensure transparency on mobile */
    position: sticky; /* Sticky navbar */
    box-shadow: none !important; /* No shadow on mobile */
  }

  /* Button styling for mobile */
  .hero-section .btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}

/* Hero Section Custom Styles */
.hero-section {
  background: linear-gradient(to right, #252746, #2f3d5b); /* Gradient background */
  padding-top: 80px; /* To ensure hero text is visible below navbar */
  margin-top:50px;
}

.hero-section .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .row {
  width: 100%;
}

.hero-section h1 {
  color: #ffffff; /* White color for h1 */
  font-size: 3rem; /* Adjust the size of h1 */
  opacity: 0; /* Initially hidden for animation */
  transform: translateX(-100px); /* Slide in effect */
  transition: transform 1s, opacity 1s;
}

.hero-section p {
  color: #d1d1d1; /* Light gray color for paragraph */
  font-size: 1.25rem;
  opacity: 0; /* Initially hidden for animation */
  transform: translateX(-100px); /* Slide in effect */
  transition: transform 1s, opacity 1s;
}

/* Button styling */
.hero-section .btn {
  font-size: 16px;
  background: #f5a623;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background: #d88e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hero-section .btn:focus {
  outline: none; /* Remove the default outline */
}






/* Ensure the video is responsive */
.hero-section video {
  width: 100%;
  max-height: 100%;
  object-fit: cover; /* Ensures video covers the div area */
}

/* Mobile Styling */
@media (max-width: 768px) {
  /* Stack the text and video vertically for smaller screens */
  .hero-section .row {
    text-align: center;
  }

  .hero-section .col-md-6 {
    margin-bottom: 20px; /* Add space between the text and video on mobile */
  }

  /* Navbar on mobile */

  #herotextid {
    order: 1; /* Make the image appear above the text */
  }
 #hero-video {
    order: 2; /* Ensure text appears below the image */
  }



  /* Button styling for mobile */
  .hero-section .btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}




/* Style for Logos Section */
.logos-section {
	height:100%;
}

.logos-section .col-6 {
  text-align: center; /* Center logos */
  margin-bottom: 20px; /* Add some space between logos */
}

.logos-section img {
  max-width: 100%; /* Ensure logos are responsive */
  height: auto; /* Maintain aspect ratio */
  transition: transform 0.3s ease; /* Smooth scaling effect */
}

/* Make the logos bigger on medium and larger screens */
@media (min-width: 768px) {
  .logos-section img {
    max-width: 80%; /* Adjust logo size on tablets and larger screens */
  }
}

/* Hover effect for logos */
.logos-section img:hover {
  transform: scale(1.2); /* Slightly enlarge logos when hovered */
}

@media (max-width: 768px) {
  /* Stack logos vertically on smaller screens */
  .logos-section .col-6 {
    margin-bottom: 10px;
  }

  /* Optional: Make the logos a bit bigger on smaller screens */
  .logos-section img {
    max-width: 60%;
  }
}


/* Creative button styles */
/* Creative button styles */
/* Base Button Style */
.btn-service {
  background: linear-gradient(to right, #3b9fef, #00b8a9); /* Deep Blue and Teal Gradient */
  color: white;
  border: none;
  padding: 15px 30px; /* Adjusted padding for better spacing */
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 50px;
  margin-right: 10px; /* Slight spacing between buttons */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Added subtle shadow */
}

/* Button Hover Effects */
.btn-service:hover {
  background: linear-gradient(to right, #56c0f1, #01e5c0); /* Lighter gradient on hover */
  box-shadow: 0px 4px 20px rgba(0, 183, 169, 0.5); /* Soft shadow effect */
  transform: translateY(-3px); /* Slightly raise the button on hover */
    color: white;

}

.btn-service:focus {
  outline: none;
  box-shadow: 0px 0px 10px rgba(0, 183, 169, 0.8); /* Focus shadow */
}

/* Option 2: Yellow and Orange Button */
#btn-service-yellow {
  background: linear-gradient(to right, #ffb84d, #ff6a00); /* Yellow and Orange Gradient */
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
 /*border-radius: 50px;*/
 }

#btn-service-yellow:hover {
  background: linear-gradient(to right, #ffca60, #ff7e00); /* Lighter yellow and orange */
  box-shadow: 0px 4px 20px rgba(255, 105, 0, 0.5); /* Soft shadow effect */
  transform: translateY(-3px);
}

/* Option 3: Purple and Pink Button */
#btn-service-purple {
  background: linear-gradient(to right, #8e44ad, #e91e63); /* Purple and Pink Gradient */
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  /*border-radius: 50px;*/
}

#btn-service-purple:hover {
  background: linear-gradient(to right, #9b59b6, #f06292); /* Lighter purple and pink */
  box-shadow: 0px 4px 20px rgba(231, 30, 99, 0.5); /* Soft shadow effect */
  transform: translateY(-3px);
}

/* Add spacing between buttons for small screens */
@media (max-width: 768px) {
  .btn-group .btn {
    width: 50%; /* Full width on mobile */
    margin-bottom: 10px; /* Add spacing between buttons */
    font-size: 16px;
    padding: 12px;
    margin-right: 0; /* Ensure there's no right margin */
  }
}

/* Collapsible content styling */
/* Collapsible content styling */
.collapse {
  transition: height 0.5s ease-in-out;
   overflow: hidden; /* Hide overflowing content during transitions */
}

/* Styling for collapsible content */
/* Styling for collapsible content */
.collapse-content {
  background: #fff; /* Set background to white */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow around the content */
}

/* Title styling */
.service-title {
  font-size: 24px;
  font-weight: bold;
  color: #252746; /* Dark color for the title */
  margin-bottom: 15px;
  padding:25px;
}

/* Paragraph styling */
.collapse-content p {
  text-align: left; /* Align the text to the left */
  color: #555; /* Slightly lighter color for the text */
  line-height: 1.6;
  margin-bottom: 0; /* Remove extra bottom margin */
}

/* Flexbox alignment for the text content */
.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center the content vertically */
  align-items: flex-start; /* Align text to the left */
  height: 100%; /* Ensure the container takes the full height */
}

/* Adding nice effects for images inside collapsible sections */
.collapse-content img {
  max-width: 90%;
  transition: transform 0.4s ease;
}
/*
.collapse-content img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover} */


/* Media Queries for mobile-friendly layout */
@media (max-width: 768px) {
  .row.align-items-center {
    flex-direction: column-reverse; /* Stack image below text for mobile */
    text-align: center; /* Center align text on small screens */
  }

  .col-md-6 {
    margin-bottom: 20px; /* Space between text and image */
  }

  .collapse-content img {
    max-width: 60%; /* Adjust image width on mobile */
  }

  /* Adjust title size on mobile */
  .service-title {
    font-size: 18px; /* Smaller font size */
    margin-bottom: 10px; /* Reduced margin between title and paragraph */
    padding: 0 15px; /* Adjust padding for better spacing */
  }

  /* Add extra padding for mobile p elements */
  .collapse-content p {
    padding: 0 15px; /* Padding inside paragraph to avoid text getting too close to edges */
  }
}

/* Heading Styles for buttons section */
.buttons-section h2 {
  color: white;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Add slight shadow to section headers */
.buttons-section h2 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .collapse-content .col-12 {
    order: 1; /* Make the image appear above the text */
  }
  .collapse-content .col-md-6 {
    order: 2; /* Ensure text appears below the image */
  }
}


/* General Styles for the Section */
/* Carousel Styling */
/* General Styling */
#languagesCarousel {
  position: relative;
  max-width: 100%;
}

.carousel-item {
  transition: transform 0.5s ease-in-out;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background-color: #2f3a52;
}

.card-body {
  padding: 20px;
}

.lang-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.card-title {
  font-size: 22px;
  font-weight: bold;
  color: #f6f6f6;
}

.card-text {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.5;
}

/* No Hover Effects */
.card:hover {
  transform: none;
  box-shadow: none;
}

/* Styling the carousel control arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent; /* White background for the arrows */
  border-radius: 50%; /* Make them circular */
  width: 40px; /* Set width and height */
  height: 40px;
  background-size: 50%; /* Adjust size of the arrow icon inside the circle */
  background-repeat: no-repeat; /* Prevent icon repetition */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow for better appearance */
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #00b8a9; /* Change color on hover */
  transform: scale(1.1); /* Slightly increase the size */
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3); /* Bigger shadow on hover */
}



/* Carousel Layout */
.row-cols-1, .row-cols-md-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.col {
  max-width: 300px;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 12px;
  }

  .lang-icon {
    width: 50px;
    height: 50px;
  }

  .row-cols-md-3 {
    flex-direction: column;
    align-items: center;
  }

  .carousel-item {
    padding: 20px;
  }
}

/* Section Title */
h2.text-white {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}




/* Section title */
/* Section title */
/* Main Section Styling */
.why-choose-us-section {
  background: linear-gradient(to right, #252746, #2f3d5b); /* Gradient Background */
}

/* Feature Block Styling */
.feature-block {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon Container */
.icon-container i {
  color: #2f3d5b; /* Icon Color */
  transition: transform 0.3s ease;
}

/* Feature Block Title */
.feature-title {
  color: #252746;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Feature Block Text */
.feature-block p {
  color: #555;
}

/* Hover Effect: Scale and Elevation */
.feature-block:hover {
  transform: translateY(-10px); /* Lift the block */
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Hover Effect for Icons */
.feature-block:hover .icon-container i {
  transform: rotate(360deg); /* Icon Rotation Animation */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .col-md-3 {
    max-width: 100%; /* Stack vertically on small screens */
  }
}
/* Title Styling */
/* Title Styling for Why Choose Us */
#why-choose-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  animation: title-glow 1.5s ease-in-out infinite alternate;
}

/* Bounce and Scale Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Neon Glow Effect */
@keyframes glowEffect {
  0% {
    text-shadow: 0 0 5px #56c0f1, 0 0 10px #56c0f1, 0 0 15px #01e5c0;
  }
  50% {
    text-shadow: 0 0 10px #56c0f1, 0 0 20px #01e5c0, 0 0 30px #ff7c6b;
  }
  100% {
    text-shadow: 0 0 5px #56c0f1, 0 0 15px #01e5c0, 0 0 25px #f7b6d7;
  }
}




#programmingtitlecid {
   font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  animation: title-glow 1.5s ease-in-out infinite alternate;
  margin: 0 auto; /* Center horizontally */
  max-width: 100%; /* Prevent title from being too wide */

}


/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blink the caret (cursor) */
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

/* Optional: Adjust for mobile */
@media (max-width: 768px) {
  #programmingtitlecid {
    font-size: 1.5rem; /* Slightly smaller font size on mobile */
  }
}

/* Typing animation for hero section heading and text */
/* Typing animation for hero section heading and text */
#hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem; /* Adjust the size for your Hero section */
  font-weight: 700;
  color: #ffffff; /* White color */
  text-align: center; /* Align the text to the left */
  text-shadow: 0 0 5px #56c0f1, 0 0 10px #56c0f1, 0 0 15px #01e5c0; /* Neon glow effect */
  border-right: 3px solid #ffffff; /* Cursor effect */
  padding-right: 10px;
  white-space: nowrap; /* Prevent line breaks */
  overflow: hidden; /* Prevent overflow */
  width: 0; /* Start with width 0 for the typing effect */
  animation: typing 3s steps(30) 1s forwards, blink-caret 0.75s step-end infinite;
  display: inline-block;

}
/* Make the text visible once AOS is triggered */
[data-aos="fade-up"].aos-animate #hero-heading {
  visibility: visible;
}
/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blink the caret (cursor) effect */
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
/* Use a custom font */

/* Title Style */
#services-title {
  font-family: 'Montserrat', sans-serif; /* Custom font */
  font-size: 2rem; /* Adjust size */
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  position: relative;
  letter-spacing: 1px; /* Slightly increased letter spacing for impact */
  text-transform: uppercase; /* Capitalize the letters */
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-out; /* Fade-in animation */
}

/* Neon Glow Effect */
/* Import Google Font */

/* Title Styling */
#services-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  animation: title-glow 1.5s ease-in-out infinite alternate;
}

/* Bounce and Scale Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Neon Glow Effect */
@keyframes glowEffect {
  0% {
    text-shadow: 0 0 5px #56c0f1, 0 0 10px #56c0f1, 0 0 15px #01e5c0;
  }
  50% {
    text-shadow: 0 0 10px #56c0f1, 0 0 20px #01e5c0, 0 0 30px #ff7c6b;
  }
  100% {
    text-shadow: 0 0 5px #56c0f1, 0 0 15px #01e5c0, 0 0 25px #f7b6d7;
  }
}

/* Add some shadow for buttons and hover effects */
/* Styling for Project Buttons */
/* Styling for the formal project buttons */
/* Button Gradient Styling */
/* Button gradient styles (already provided) */
.btn-gradient-purple {
  background: linear-gradient(to right, #8e44ad, #e91e63);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-gradient-blue {
  background: linear-gradient(to right, #3b9fef, #00b8a9);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-gradient-yellow {
  background: linear-gradient(to right, #ffca60, #ff7e00);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-gradient-orange {
  background: linear-gradient(to right, #ffb84d, #ff6a00);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Hover effects for buttons */
.btn-gradient-purple:hover {
  background: linear-gradient(to right, #e91e63, #8e44ad);
  color: white;
}

.btn-gradient-blue:hover {
  background: linear-gradient(to right, #56c0f1, #01e5c0);
  color: white;
}

.btn-gradient-yellow:hover {
  background: linear-gradient(to right, #ffca60, #ff7e00);
  color: white;
}

.btn-gradient-orange:hover {
  background: linear-gradient(to right, #ff6a00, #ffb84d);
}

/* Icon inside the button */
.icon-btn {
  margin-right: 10px; /* Space between icon and text */
  transition: transform 0.3s ease-in-out; /* Smooth animation for icon */
    font-size: 30px; /* Adjust this value to make the icons bigger */

}

/* Animation for icons (rotate and scale on hover) */
.project-btn:hover .icon-btn {
  transform: rotate(360deg) scale(1.2); /* Rotate and scale the icon */
}

/* Optionally add more animation effects */
.project-btn:focus .icon-btn {
  transform: scale(1.2); /* Increase size on focus */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .btn-group-vertical {
    width: 100%;
  }
  .btn-lg {
    font-size: 16px; /* Smaller font size for mobile */
  }
}


/* Right Section: White Background with Centered Image and Left-Aligned Text */
.project-content {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  gap:25px;
}

.project-img {
  max-width: 15%;
  margin-right: 20px;
}

.project-text {
  max-width: 70%;
  margin-left:15px;
}

.project-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.project-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.project-text .btn-dark {
  background-color: #343a40;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.project-text .btn-dark:hover {
  background-color: #23272b;
}

/* For mobile screens, use collapse behavior */
@media (max-width: 768px) {
  .unique-project-section {
    display: none;
    animation: none; /* Remove animation for mobile */
  }

  .collapse.show {
    display: block;
  }
  .project-img {
  max-width: 30%;
  margin-right: 20px;
}
.project-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.project-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}


}

/* Smooth fade-in effect for desktop */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: smooth fade-in transition */
/* Title Styles */
#projects-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem; /* Large size */
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.4); /* Red glow */
}

/* Glowing Text Animation */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.4);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8), 0 0 20px rgba(255, 165, 0, 0.6), 0 0 30px rgba(255, 165, 0, 0.4); /* Orange glow */
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.4); /* Red glow */
  }
}

/* Apply Animation */
#projects-title {
  animation: glow 2s infinite alternate; /* Continuous glowing effect */
}

/* Pulse Animation (Optional) */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


/* Optional: Media Query for Mobile */
@media (max-width: 768px) {
  #projects-title {
    font-size: 2rem; /* Adjust for smaller screens */
  }
}
/* Flame Icon Styling */
/* Flame Icon Styling */
.flame-icon {
  display: inline-block;
  vertical-align: middle; /* Align the flame next to the text */
  margin-left: 10px; /* Space between title and flame */
  animation: flame-animation 1s ease-in-out infinite; /* Add animation */
}

/* Flame Animation Effect */
@keyframes flame-animation {
  0% {
    transform: scaleY(1);
    opacity: 1; /* Keep the opacity full */
  }
  50% {
    transform: scaleY(1.2); /* Slightly scale up */
    opacity: 1; /* Keep opacity at full */
  }
  100% {
    transform: scaleY(1); /* Return to normal size */
    opacity: 1; /* Keep opacity at full */
  }
}
#projects-title {
  position: relative; /* Make sure it can stack above other elements */
  z-index: 10; /* Higher z-index ensures it stays on top */
}




/* Section Styling */
/* New Section Styling */
/* Updated Background Styling */
/* Updated Background Styling */
#registration-steps {
	  background: linear-gradient(to right, #252746, #2f3d5b); /* Gradient background */
  padding-top: 60px;
  padding-bottom: 60px;
  color: white;
}

#registration-steps .section-title {
   font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  animation: title-glow 1.5s ease-in-out infinite alternate;
}

/* Step Box Styling */
.step-box {
  background: #2f3d5b;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Icon Styling - Removed Background */
.step-icon {
  /* Removed the background */
  color: #f5a623; /* Warm golden color for icon */
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 50px; /* Adjusted size for better visibility */
}

.step-icon:hover {
  transform: scale(1.1);
  color: #ff6f61; /* Slight color change on hover */
}

/* Step Title Styling */
.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

/* Step Text Styling */
.step-box p {
  font-size: 1rem;
  color: #ddd;
}

/* Contact Button Styling */
.btn-contact-us {
  background: #f5a623;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-contact-us:hover {
  background: #d88e22;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .step-box {
    padding: 20px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-box p {
    font-size: 0.95rem;
  }

  .btn-contact-us {
    padding: 12px 25px;
    font-size: 16px;
  }
}





/* Section Background Styling */
/* Custom Card Design */
/* Custom Card Design */
/* Title Styling */
#contact-form .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  animation: title-glow 1.5s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 223, 186, 1), 0 0 30px rgba(255, 223, 186, 0.6);
  }
  100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  }
}

/* Card Design */
.cardcontact {
  border: none;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  transition: all 0.3s ease-in-out;
}

/* Input & Textarea Styling */
.cardcontact input, .cardcontact textarea {
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

/* Focused Input Field Styling */
.cardcontact input:focus, .cardcontact textarea:focus {
  border-color: #2f3d5b;
  box-shadow: 0 0 8px rgba(47, 61, 91, 0.6);
  outline: none;
}

/* Placeholder Text Styling */
.cardcontact input::placeholder, .cardcontact textarea::placeholder {
  color: #aaa;
}

/* Submit Button Styling */
.cardcontact .btn-submit {
  background: linear-gradient(to right, #252746, #2f3d5b);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.cardcontact .btn-submit:hover {
  background: linear-gradient(to left, #252746, #2f3d5b);
  cursor: pointer;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  #contact-form .section-title {
    font-size: 2rem;
  }

  .cardcontact .btn-submit {
    width: 100%; /* Full-width button on mobile */
  }

  .cardcontact {
    padding: 20px;
  }
}





/* Footer Styling */
.footer-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(to right, #252746, #2f3d5b);
}

/* Footer Title Styling */
.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #ff6f61;
  margin-top: 8px;
}

/* Footer Text */
.footer-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #bbb;
}

/* Footer Links */
.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-link {
  text-decoration: none;
  font-size: 1rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6f61;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff6f61;
}

/* Footer Bottom Styling */
.footer-bottom {
  margin-top: 30px;
  color: #bbb;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .footer-title {
    font-size: 1.3rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }
}
/* Base button styling */
/* Override the button color specifically */
.btn-dark.custom-btn {
  background-color: #f5a623; /* Your desired color */
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  padding: 15px 30px;
  border-radius: 50px; /* Rounded corners */
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

/* Hover effect */
.btn-dark.custom-btn:hover {
  background-color: #e5941e; /* Slightly darker orange on hover */
  transform: translateY(-3px); /* Lift the button up */
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); /* Larger shadow on hover */
  transition: all 0.3s ease-in-out;
}

/* Active state when clicked */
.btn-dark.custom-btn:active {
  transform: translateY(1px); /* Button presses down slightly */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Slightly smaller shadow */
}



























.select-package {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.select-package-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
}

.card-header {
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-price h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.card-footer {
  padding: 1rem;
}

.card-body {
  padding: 1.5rem;
}

ul.list-unstyled li {
  margin-bottom: 10px;
}

.price_btn {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.pricing-content{position:relative;}
.pricing_design{
    position: relative;
    margin: 0px 15px;
}
.pricing_design .single-pricing{
    background:#554c86;
    padding: 60px 40px;
    border-radius:30px;
    box-shadow: 0 10px 40px -10px rgba(0,64,128,.2);
    position: relative;
    z-index: 1;
}
.pricing_design .single-pricing:before{
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 190px 18px;
    border: 1px solid #eee;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.price-head{}
.price-head h2 {
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: 600;
}
.price-head h1 {
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 5px;
}
.price-head span{}

.single-pricing ul{list-style:none;margin-top: 30px;}
.single-pricing ul li {
	line-height: 36px;
	text-align:left;
}
.single-pricing ul li i {
	background: #554c86;
	color: #fff;
	width: 20px;
	height: 20px;
	border-radius: 30px;
	font-size: 11px;
	text-align: center;
	line-height: 20px;
	margin-right: 6px;
}
.pricing-price{}

.price_btn {
	background: #554c86;
	padding: 10px 30px;
	color: #fff;
	display: inline-block;
	margin-top: 20px;
	border-radius: 2px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.price_btn:hover{background:#0aa1d6;}
a{
text-decoration:none;    
}

.section-title {
    margin-bottom: 60px;
}
.text-center {
    text-align: center!important;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    text-transform: capitalize;
}

#pricing  .section-title h2 {
   font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.6);
  animation: title-glow 1.5s ease-in-out infinite alternate;
}


