/* General Reset and Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Apply smooth scrolling globally */
html {
  scroll-behavior: smooth; /* Enables smooth scrolling */
  font-size: 100%;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body styling */
body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Enable smooth scrolling */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9f9f9;
  color: #333;
  scroll-behavior: smooth; /* Apply smooth scrolling for anchor links */
}



/* Fade-out effect */
body.fade-out {
  opacity: 0;
}


/* Preload animations or fonts */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.3s ease-in-out;
}


/* Notification Base Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    font-size: 1em;
    font-weight: bold;
    z-index: 1000;
    display: none; /* Hidden by default */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
  }
  
  /* Success Style */
  .notification.success {
    background-color: #4caf50; /* Green */
  }
  
  /* Error Style */
  .notification.error {
    background-color: #f44336; /* Red */
  }
  
  /* Animation for Fade-In */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Animation for Fade-Out */
  @keyframes fadeOut {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-10px);
    }
  }
  header {
    background: linear-gradient(90deg, black, rgba(0, 123, 255, 0.8)); /* Smooth gradient */
    color: white; /* White text for contrast */
    height: 80px; /* Explicitly set a shorter height */
    padding: 0 20px; /* Horizontal padding only */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center-align items vertically */
    border-bottom: 2px solid rgba(0, 123, 255, 0.8); /* Subtle glowing border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7); /* Enhanced shadow for depth */
    position: fixed; /* Fixed header at the top */
    top: 0; /* Aligned to the top */
    left: 0; /* Stretches to the left */
    right: 0; /* Stretches to the right */
    z-index: 1000; /* Ensures it's above other elements */
    width: 100%; /* Full width of the page */
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5); /* Glow effect on text */
  }
  
  
  /* Add padding to the body to prevent content from being hidden under the header */
  body {
    padding-top: 80px; /* Adjust this value based on the height of your header */
  }
  
  

  .navbar .logo img {
    width: 60px; /* Default logo size */
    height: auto; /* Keep aspect ratio intact */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
  }
  
  /* Glowing effect on hover */
  .navbar .logo img:hover {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6); /* Glowing effect */
    transform: scale(1.05); /* Slightly enlarge the logo on hover */
    filter: brightness(1.1); /* Brighten the logo */
  }
  
  /* Responsive adjustments for larger screens */
  @media (min-width: 768px) {
    .navbar .logo img {
      width: 60px; /* Larger logo on bigger screens */
    }
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 480px) {
    .navbar .logo img {
      width: 60px; /* Smaller logo on mobile */
    }
    
  }


  /* Smooth scrolling for the entire page */
  html {
    scroll-behavior: smooth; /* This enables smooth scroll behavior for anchor links */
  }
  
  /* Navigation Links */
  header .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  header .nav-links li a {
    text-decoration: none;
    color: #fff; /* White text */
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  }
  
  header .nav-links li a:hover {
    color: rgba(0, 123, 255, 0.8); /* Glowing blue on hover */
    transform: scale(1.2); /* Slightly enlarge on hover */

  }
  
  /* Optional underline grow effect */
  header .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Position below the text */
    left: 50%; /* Start at the center */
    width: 0; /* Initially no width */
    height: 2px;
    background-color: black; /* Same glowing color */
    transition: width 0.3s ease, left 0.3s ease;
  }
  
  header .nav-links li a:hover::after {
    width: 100%; /* Full width on hover */
    left: 0; /* Align to the start */
  }
  
  /* Contact Info */
  header .contact-info {
    font-size: 14px;
    text-align: right;
    color: #fff;
    margin-left: 2rem;;
  }
  
  header .contact-info p {
    margin: 0;
    text-shadow: rgba(0, 123, 255, 0.8);
    margin-top: 4rem;
   
  }
  
  header .contact-info p:hover {
    color: black; /* Glowing effect on hover */
    text-shadow: white;
  }
  
  
  /* Default styles (for large screens) */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
  }
  
  /* Hamburger styles */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  
  .hamburger .line {
    height: 4px;
    width: 100%;
    background-color:  rgba(0, 123, 255, 0.8);
    border-radius: 5px;
    transition: 0.3s;
  }
  
  /* Contact info styling */
  .contact-info p {
    font-size: 14px;
    color: var(--text-color);
  }
  
  /* Glowing effect for small screens */
  @keyframes glowing {
    0% {
      box-shadow: 0 0 5px #0ef, 0 0 10px #0ef, 0 0 20px #0ef;
    }
    50% {
      box-shadow: 0 0 10px #0ef, 0 0 20px #0ef, 0 0 30px #0ef;
    }
    100% {
      box-shadow: 0 0 5px #0ef, 0 0 10px #0ef, 0 0 20px #0ef;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {

    /* Very compact header */
    header {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 5px 15px; /* Reduced padding */
      height: 80px; /* Set a fixed small height */
    }
  /* Nav links container */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced gap */
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 80px; /* Position just below the header */
  left: 10rem; /* Align links properly */
  width: 40%; /* Adjust for alignment */
  transform: translateY(-10px); /* Slightly off-screen for the slide effect */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; /* Smooth transition */
  background-color: #fff; /* Add background for better visibility */
  padding: 10px;
  border-radius: 5px; /* Rounded corners for the container */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  z-index: 1; /* Ensure it's above other elements */
}

/* Visible state */
.nav-links.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Slide in */
}

/* Nav link items */
header .nav-links li a {
  text-decoration: none;
  color: rgba(0, 123, 255, 0.8); /* Glowing text color */
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px; /* Rounded corners */
  background-color: #f1f1f1; /* Light background */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 0, 0, 0.2); /* Classic shadow */
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for nav links */
header .nav-links li a:hover {
  color: #fff; /* Invert text color */
  background-color: rgba(0, 123, 255, 0.8); /* Highlight background */
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4); /* Stronger glow */
}

  
    .hamburger {
      display: flex;
      width: 25px; /* Smaller hamburger */
      height: 20px;
      z-index: 1;
     
    }
  
    .hamburger .line {
      height: 3px; /* Thinner lines */
      background-color: white; /* Glowing effect color */
      margin-left: 8rem;
      
    }
  
    
    header .contact-info {
        font-size: 10px;
        text-align: right;
        color: #fff;
        margin-left: 2rem;;
        margin-top: 8rem;;
      }


  
  }



 /* Responsive Design */
 @media (max-width: 1600px) {
  header .contact-info p {
    margin: 0;
    text-shadow: rgba(0, 123, 255, 0.8);
  
  }

  header .contact-info p {
    margin: 0;
    text-shadow: rgba(0, 123, 255, 0.8);
  
  }



  header .contact-info {
    font-size: 10px;
    text-align: right;
    color: #fff;
    margin-left: -4rem;;
  }


  
  
 
header .contact-info {
  font-size: 14px;
  text-align: right;
  color: #fff;
  margin-right: 10rem;;
  margin-top: 8rem;;
  z-index: -1;
}

header .contact-info p:hover {
color: black; /* Glowing effect on hover */
text-shadow: rgba(0, 123, 255, 0.8);
}
  


 }













 /* Responsive Design */
  @media (max-width: 900px) {
    header .contact-info p {
      margin: 0;
      text-shadow: rgba(0, 123, 255, 0.8);
    
    }
  
  
  
    header .contact-info {
      font-size: 10px;
      text-align: right;
      color: #fff;
      margin-left: -4rem;;
    }
  
  
    
    
   
  header .contact-info {
    font-size: 14px;
    text-align: right;
    color: #fff;
    margin-right: 10rem;;
    margin-top: 8rem;;
    z-index: -1;
  }
  
  header .contact-info p:hover {
  color: black; /* Glowing effect on hover */

  }
    

}


@media (max-width: 468px) {
  header .contact-info p {
    margin: 0;
    text-shadow: rgba(0, 123, 255, 0.8);
  
  }



  header .contact-info {
    font-size: 10px;
    text-align: right;
    color: #fff;
    margin-left: -4rem;;
  }


  
  
  header .contact-info {
    font-size: 14px;
    text-align: right;
    color: #fff;
    margin-right: 10rem;;
    margin-top: 8rem;;
    z-index: -1;
  }


header .contact-info p:hover {
color: black; /* Glowing effect on hover */

}
  

}
















  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-info p {
    font-size: 14px;
    color: white;
  }
  
/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 123, 255, 0.7), rgba(0, 86, 179, 0.75)), 
              url('images/hero.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 40px;
  text-align: center;
  position: relative;
  border-radius: 0;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: 'Times New Roman', serif;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  opacity: 0.98;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 16px 40px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #0056b3;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-buttons a:hover {
  background-color: white;
  color: #003d82;
  transform: translateY(-3px);
  border-color: white;
}

.cta-buttons a:nth-child(2) {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons a:nth-child(2):hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 90px 30px;
  }
  
  .hero-section h1 {
    font-size: 2.8rem;
  }
  
  .hero-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
  }
  
  .cta-buttons {
    gap: 15px;
  }
  
  .cta-buttons a {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 70px 20px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-section p {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
}
  

  .about-section {
    background: rgba(255, 255, 255, 0.8); /* Glassy white background */
    backdrop-filter: blur(10px); /* Glass-like blur */
    padding: 50px;
    border-radius: 15px;
    margin: 20px auto;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3); /* Glowing shadow */
    max-width: 1200px;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsiveness */
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 2.8rem;
    color: rgba(0, 123, 255, 0.9); /* Vibrant blue */
    margin-bottom: 20px;
  
  }
  
  .about-text p {
    font-size: 1.3rem;
    color: #1f242d; /* Dark text for readability */
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .read-more-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(0, 123, 255, 0.9); /* Vibrant blue button */
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5); /* Subtle glowing shadow */
  }
  
  .read-more-button:hover {
    background-color: #0ef; /* Lighter blue on hover */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.8);
    transform: scale(1.1); /* Slight zoom effect */
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: right; /* Aligns the image to the right */
  }
  
  .about-image .image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5); /* Glowing shadow */
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .about-image .image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.5); /* Blue overlay */
    opacity: 0.7;
    mix-blend-mode: overlay;
    transition: opacity 0.3s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
    filter: brightness(1.1);
  }
  
  .about-image:hover .image-overlay::after {
    opacity: 0.5; /* Reduce overlay intensity on hover */
  }








/* Section Styles */
.why-choose-us-section {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 80px 40px;
  margin: 50px auto;
  max-width: 1200px;
  border-radius: 20px;

  transition: all 0.3s ease-in-out;
}

.why-choose-us-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 35px rgba(0, 123, 255, 0.5);
}

/* Header Styles */
.why-choose-us-header {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}

.why-choose-us-header h1 {
  font-size: 2.5rem;
  color: rgba(0, 123, 255, 0.9);

  border-left: 5px solid rgba(0, 123, 255, 0.8);
  padding-left: 15px;
}

/* Text Section Styles */
.why-choose-us-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: rgba(0, 123, 255, 0.8);

}

.why-choose-us-text ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
  text-align: left;
}

.why-choose-us-text ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
}

.why-choose-us-text ul li::before {
  content: '✔';
  font-size: 1.2rem;
  color: rgba(0, 123, 255, 0.8);
  position: absolute;
  left: 0;
  top: 3px;
}

/* Images Section Styles */
.why-choose-us-images {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.why-choose-us-image {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us-image:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 123, 255, 0.3);
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .why-choose-us-header h1 {
    font-size: 2rem; /* Adjust font size for smaller screens */
    color: rgba(0, 123, 255, 0.8); /* Classic color with a touch of blue */
    /* Glowing effect */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Transparent white border */
    border-radius: 10px; /* Rounded corners */
    padding: 10px 20px; /* Add spacing inside the border */
    display: inline-block; /* Ensure the border wraps tightly around the text */
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background to highlight the text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3); /* Pop-out shadow */
    margin-bottom: 20px; /* Add spacing below the header */
    text-align: center; /* Align text to the left */
    justify-content: center;
    align-items: center;
    margin-left:4rem;
  }

  .why-choose-us-container {
    flex-direction: column;
    gap: 20px;
  }

  .why-choose-us-images {
    flex-direction: column;
  }

  .why-choose-us-image {
    width: 100%;
  }
}















  
  
/* Services Section */
.services-section {
  padding: 80px 30px;
  background: rgba(255, 255, 255, 0.2); /* More glassy transparent white */
  backdrop-filter: blur(25px); /* Increased blur for glassy effect */
  border-radius: 20px;
  box-shadow: 0 10px 80px rgba(0, 0, 0, 0.6), 0 30px 90px rgba(255, 255, 255, 0.3); /* Stronger shadow for depth */
  text-align: center;
  transition: box-shadow 0.5s ease-in-out, transform 0.3s ease;
}

.services-section:hover {
  box-shadow: 0 0 100px rgba(0, 123, 255, 0.8), 0 30px 120px rgba(255, 255, 255, 0.5); /* Intense glowing shadows */
  transform: translateY(-10px); /* Added pop-out effect */
}

/* Section Title */
.services-section h2 {
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.9);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7); /* Enhanced glowing text shadow */
  margin-bottom: 50px;
  transition: text-shadow 0.3s ease;
}

.services-section h2:hover {
  text-shadow: 0 0 40px rgba(0, 123, 255, 1); /* More intense glowing effect */
}

/* Service Cards Layout */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Service Card Styling */
.service-card {
  background: rgba(255, 255, 255, 0.5); /* More glassy card */
  backdrop-filter: blur(15px); /* Increased blur for a clearer glass effect */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 10px 40px rgba(255, 255, 255, 0.4);
  overflow: hidden;
  width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 20px 50px rgba(255, 255, 255, 0.5);
  filter: brightness(1.1); /* Brightness added for better hover effect */
}

/* Image and Overlay */
.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.1);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* Card Content */
.service-card h3 {
  font-size: 1.8rem;
  margin: 25px 20px 15px;
  color: rgba(0, 0, 0, 0.9);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Glowing text shadow */
}

.service-card p {
  margin: 0 20px 25px;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Read More Button */
.service-card .read-more {
  display: block;
  margin: 0 20px 30px;
  padding: 14px 30px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.6), rgba(0, 123, 255, 0.9));
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 35px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.5), 0 0 40px rgba(0, 123, 255, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card .read-more:hover {
  background: rgba(0, 123, 255, 1);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0, 123, 255, 0.8), 0 0 65px rgba(0, 123, 255, 0.6);
}

/* Case Studies Section */
.case-studies-section {
  padding: 100px 40px; /* Adjusted padding for better balance */
  background-color: white; /* Clean white background */
  backdrop-filter: blur(10px); /* Subtle blur effect for depth */
  border-radius: 25px; /* Smooth, rounded corners */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 30px 100px rgba(0, 123, 255, 0.3); /* Strong glowing effect */
  text-align: center;
  transition: box-shadow 0.5s ease-in-out;
}

.case-studies-section h2 {
  font-size: 4.5rem; /* Larger title for impact */
  color: rgba(0, 123, 255, 1); /* Classic blue color */
  margin-bottom: 40px;
   /* Glowing text effect */
  letter-spacing: 2px;
  font-weight: 600;
}

.case-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 50px; /* More gap between cards */
  justify-content: center;
  padding-top: 30px;
}

/* Case Card Styling */
.case-card {
  background: rgba(255, 255, 255, 0.95); /* White with light transparency */
  backdrop-filter: blur(5px); /* Light blur effect for a soft glassy feel */
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 20px 70px rgba(0, 123, 255, 0.4); /* Glowing blue shadows */
  padding: 50px;
  width: 100%;
  max-width: 550px; /* Increased card size */
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  border: 2px solid rgba(0, 123, 255, 0.2); /* Soft border for definition */
}

.case-card:hover {
  transform: translateY(-15px); /* Elevated on hover */
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 30px 90px rgba(0, 123, 255, 0.5); /* Stronger glowing effect */
  filter: brightness(1.1); /* Slightly brightens the card */
}

/* Case Card Title */
.case-card h3 {
  font-size: 2.8rem; /* Larger title */
  margin-bottom: 20px;
  color: rgba(0, 123, 255, 1); /* Blue title */
 /* Glowing effect */
  font-weight: 600;
}

/* Case Card Description */
.case-card p {
  font-size: 1.5rem; /* Slightly larger font for readability */
  color: rgba(0, 0, 0, 0.7); /* Dark text for contrast */
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Read More Button */
.case-card .read-more {
  display: inline-block;
  padding: 15px 35px;
  background-color: rgba(0, 123, 255, 1); /* Blue button */
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 35px; /* Rounded button */
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.7), 0 0 40px rgba(0, 123, 255, 0.5); /* Glowing button effect */
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.case-card .read-more:hover {
  background-color: rgba(0, 123, 255, 0.9); /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 0 50px rgba(0, 123, 255, 0.8), 0 0 60px rgba(0, 123, 255, 0.6); /* Stronger glowing effect */
  filter: brightness(1.1); /* Brighten button on hover */
}

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

  



@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
    justify-content: center;
    display:flex;
  }
}

  /* Team Section */
  .team-member {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  /* Footer */


  /* Responsive Design */
  @media (max-width: 768px) {
    .service-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .service-card {
      width: 80%;
      margin-bottom: 20px;
    }
  
    .nav-links {
      display: none;
    }
  
    .contact-info {
      font-size: 12px;
    }
  
    .cta-buttons a {
      padding: 10px 20px;
    }
  }



















  .contact-section {
    background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.8), #1f242d);
    color: white;
    padding: 100px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.5);
}

.contact-section h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 123, 255, 1);
}

.contact-info {
    background-color: rgba(0, 123, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 10px rgba(0, 123, 255, 1);
}

.contact-info p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: auto;
}

.contact-info a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-section form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

.form-group {
    margin-bottom: 35px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    all: unset;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 25px;
    font-size: 1.4rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95)!important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color:black!important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.8);
    transform: scale(1.02);
}
.form-group textarea {
    resize: none;
    height: 180px;
}

.cta-button {
    background-color: rgba(0, 123, 255, 0.9);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(0, 123, 255, 1);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 1);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.5);
    }

    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-shadow: 0 0 10px rgba(0, 123, 255, 1);
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 1.3rem;
    }

    .contact-section form {
        max-width: 100%;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }

    .form-group label {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 10px;
        text-align: center;
    }

    .form-group input,
    .form-group textarea {
        width: 90%;
        padding: 15px;
        font-size: 1.2rem;
        border-radius: 8px;
    }
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
        transform: scale(1.02);
    }

    .form-group textarea {
      height: 150px;
  }


    .form-group input:disabled,
.form-group textarea:disabled {
    background-color: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
}

    .cta-button {
        background-color: rgba(0, 123, 255, 0.9);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 15px 30px;
        font-size: 1.4rem;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.6);
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        margin-top: 20px;
    }

    .cta-button:hover {
        background-color: rgba(0, 123, 255, 1);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 1);
        transform: translateY(-2px);
    }
}

  footer {
    background: linear-gradient(90deg, black, rgba(0, 123, 255, 0.8));
    color: #fff;
    padding: 40px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -5px 20px rgba(0, 123, 255, 0.6);
    text-align: center;
    position: relative;
  }
  
  .footer-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .footer-content ul li {
    font-size: 1.1rem;
  }
  
  .footer-content ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .footer-content ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 8px #fff;
  }
  
  .social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-icon {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    transition: background 0.3s, box-shadow 0.3s;
  }
  
  .social-icon:hover {
    background: #fff;
    color: rgba(0, 123, 255, 0.8);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.6);
  }
  
  footer p {
    font-size: 0.9rem;
    margin-top: 20px;
    font-weight: bold;
  }
  
  footer p::before {
    content: '✨';
    margin-right: 5px;
  }
  
  footer p::after {
    content: '✨';
    margin-left: 5px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content ul {
      flex-direction: column;
      gap: 15px;
    }
  
    .social-media {
      flex-direction: column;
      gap: 15px;
    }
  
    footer {
      padding: 30px 15px;
    }
  }
  