@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Manrope:wght@400;600&family=DM+Sans:wght@400;500&display=swap');

body {
  font-family: Arial, sans-serif;
  background-color: #0F172A;
  color: white;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Import Premium Fonts */


body {
  font-family: 'Manrope', 'DM Sans', sans-serif;
  font-weight: 400;
  color: #E5E7EB;
  /* Light Gray for better contrast */
}

/* Headings - Elegant & Bold */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #FFFFFF;
  /* Pure white for clear visibility */
  letter-spacing: 1px;
}

/* Subheadings & Body Text - Modern & Clean */
p,
span,
a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #F8FAFC;
  /* Softer white for readability */
}

/* Buttons - Sharp & Eye-Catching */
.btn-custom {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}


/* Transparent Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.2);
  /* Transparent Black */
  /*transition: background 0.4s ease-in-out, padding 0.4s ease-in-out;*/
  /*padding: 15px 0;*/
  transition: background 0.4s ease-in-out, min-height 0.4s ease-in-out;
  min-height: 70px; /* Set a fixed height */
}

/* Dark Background & Increased Height on Scroll */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8); /* Darker background on scroll */
  min-height: 70px; /* Keep the height consistent */
}

/* Navbar Hover Effect */
.navbar:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Logo */
.navbar-brand img {
  height: 75px;
  transition: height 0.4s ease-in-out;
}

.logo-text {
  color: aqua;
}

/* Adjust Logo Size on Scroll */
.navbar.scrolled .navbar-brand img {
  height: 50px;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: white !important;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease-in-out;
}

/* Amazing Hover Effect - Underline Animation */
.navbar-nav .nav-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: aqua;
  position: absolute;
  left: 50%;
  bottom: -3px;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Navbar Toggle Button */
.navbar-toggler {
  border: none;
  background-color: aqua;
  padding: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: height 0.5s ease-in-out;
}

/* Default state (Fully Visible) */
.hero h1,
.hero p,
.hero .btn-custom {
  transition: opacity 0.8s ease-out, transform 1s ease-out, filter 1s ease-out;
}

/* Fire Smoke Effect when Scrolling */
.scrolled .hero h1,
.scrolled .hero p,
.scrolled .hero .btn-custom {
  opacity: 0;
  /* Fades out */
  transform: translateY(-40px);
  /* Moves text upward */
  filter: blur(10px);
  /* Adds smoke-like blur effect */
}

/* Shrink Hero Section on Scroll */
.scrolled .hero {
  height: 50vh;
}


.btn-custom {
  background-color: #06B6D4;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #0284C7;
}

.projects {
  padding: 60px 0;
  text-align: center;
}

.snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

/* Ensure Projects Section is Above Snow */
.projects {
  position: relative;
  z-index: 10;
  /* Keeps content above snowfall */
  /*background: rgba(0, 0, 0, 0.9);*/
  background: black;

  padding: 50px;
  border-radius: 10px;
}

/* Projects Section - Premium Background */
#projects {
  /*background: linear-gradient(135deg, #111827, #1E293B); */
  padding: 80px;
}
.highlight-quote {
  font-size: 2rem; /* Adjust size */
  font-weight: bold;
  color: #06B6D4; /* Golden color for premium look */
  text-shadow: 8px 0px 20px #00fff696; 
  background: linear-gradient(45deg, #06B6D4, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  animation: glow 2s infinite alternate;
}



/* Project Card - Glassmorphism Effect */
.card {
  background: rgba(255, 255, 255, 0.1);
  /* Transparent Glass Effect */
  /* backdrop-filter: blur(10px); Blur for Glassmorphism */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effect - Elevation & Glow */
.card:hover {
  transform: translateY(-8px);
  border: 2px dotted #06B6D4 !important;
  box-shadow: 0px -1px 8px rgba(5, 208, 205, 0.9) !important;
  background: rgb(16 56 61 / 50%);
}

/* Card Title */
.card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #F8FAFC;
  /* Softer White */
  font-weight: 700;
  margin-bottom: 15px;
}

/* Card Text */
.card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #E5E7EB;
  /* Light Gray */
  line-height: 1.6;
}

/* Button - Premium Look */
.btn-custom {
  background: linear-gradient(90deg, #06B6D4, #0284C7);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

/* Button Hover */
.btn-custom:hover {
  background: linear-gradient(90deg, #0284C7, #06B6D4);
  transform: scale(1.05);
}


/* About Us secyion Css  */
.about-section {
  /*background: rgba(16, 56, 61, 0.9);*/
  /*background: rgb(2 167 179);*/
  background: #05363c;
  padding: 50px 20px;
  /*border-radius: 10px;*/
}

.about-section h2 {
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 5px 3px 5px rgba(0, 0, 0, 0.5);
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  text-align: justify;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
}

.about-img {
  width: 100%;
  max-width: 360px;
  /*background: rgba(16, 60, 61, 0.75);*/
  background: rgb(155 248 250 / 91%);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.about-img:hover {
  transform: scale(1.05);
}

.about-section ul {
  padding-left: 0;
  list-style: none;
}

.about-section ul li {
      font-size: 1.2rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
}

.about-section .btn-primary {
  background-color: #0289c7;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background 0.3s ease-in-out;
}

.about-section .btn-primary:hover {
  background-color: #026a9b;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .about-section {
      text-align: center;
  }
  
  .about-section p {
      font-size: 1rem;
  }

  .about-img {
      max-width: 280px;
  }
}

/* Ripple effect styling */
/* Ripple Effect */
.ripple {
  position: fixed; /* Ensures ripple appears at the exact click position */
  background: rgba(0, 241, 193, 0.5); /* Semi-transparent white */
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none; /* Prevents interaction issues */
  z-index: 9999; /* Ensures it appears above all elements */
  width: 100px;
  height: 100px;
}

/* Ripple Animation */
@keyframes ripple-animation {
  to {
      transform: scale(3);
      opacity: 0;
  }
}

/* Ripple Animation */
@keyframes ripple-animation {
  to {
      transform: scale(3);
      opacity: 0;
  }
}
@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* service section styling 
*/
.services-section{
  /*background: rgb(0 24 29 / 90%);*/
  background:rgb(0,0,0);
}


.services-section .card {
  transition: 0.3s ease-in-out;
}

.services-section .card:hover {
  transform: translateY(-5px);
  border: 2px dotted #06B6D4 !important;
  box-shadow: 0px -1px 8px rgba(5, 208, 205, 0.9) !important;
  background: rgb(16 56 61 / 50%);

}
.service-card-text{
  color: #00ffcebd !important;
}
.service-icon-color{
  color: aqua  !important;
}

/* Developer section styling  */
.developers-section{
  /*background: rgba(0,0,0,0.9);*/
  background: #05363c;
}
.developers-section .card:hover {
 border: 2px dotted #06B6D4 !important;
 box-shadow: 0px -1px 8px rgba(5, 208, 205, 0.9) !important;


}
.developer-card{
  /*background: rgb(0 24 29 / 75%) !important;*/
  background: black;
}
.developer-role-text{
  color: #06B6D4 !important;
}

/* contact us section styling  */
.contact-section{
  /*background: rgb(16 56 61 / 90%);*/
  background: #05363c;
}
.contact-us-label{
  color: #00ffcebd !important;
}
.form-control-manual{
  background: rgb(0, 0, 0, 0.5);
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid aqua;
    color: aqua !important;
}
.form-control-manual::placeholder {
  color: aqua; /* Change to your desired color */
  opacity: 1; /* Ensure full visibility */
}


.form-control-manual:focus{
box-shadow: none;
background-color: rgb(0, 0, 0, 0.5);
    border: 2px dotted aqua;
    outline: 0;
    box-shadow: 0px -1px 5px rgba(5, 208, 205, 0.9) !important;
}
.form-control-button{
  background-color: #00ffcebd ;
}
.form-control-button:hover{
  background-color: aqua ;
}

.contact-section .card:hover {
  border: 2px dotted #06B6D4 !important;
  box-shadow: 0px -1px 8px rgba(5, 208, 205, 0.9) !important;
  background: rgb(16 56 61 / 50%);
}
.contact-card-icon{
  color: #06B6D4 !important;
  font-size: 20px;
}

/* Responsive Spacing */
@media (max-width: 768px) {
  .contact-section {
      padding: 3rem 1rem;
  }
  
  .form-control-manual {
      padding: 8px;
  }

  .form-control-button {
      font-size: 0.9rem;
  }
  .highlight-quote{
    font-size: 1.5rem;
  }
  .card p{
    font-size: 14px;
    font-weight: 500;
  }
  .p-heading{
    font-size:14px
  }
  
}

/* Footer Section */
.footer-section {
  background: rgb(0 24 29 / 90%);
  color: #fff;
  padding: 50px 0 0 0;
  text-align: center;
}

.footer-col {
  margin-bottom: 30px;
}


.footer-section h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-section h4::after {
  content: "";
  width: 150px; /* Adjust the underline width */
  height: 2px;
  background-color: #00ffcebd; /* Gold color underline */
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}


.footer-section p,
.footer-section ul {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  text-align: start;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00d9ff;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  
  text-align: start;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: #00d9ff;
}

/* Social Media Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  color: #00d9ff;
  font-size: 1.2rem;
  transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #FF8800;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(2, 217, 188, 0.301);
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 20px;
}
.footer-bottom p{
  margin: 0;
  color: aqua;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
      text-align: center;
      /* padding: 40px 20px; */
  }

  .footer-col {
      text-align: center;
  }

  .footer-links,
  .contact-info {
      text-align: center;
  }
}

/* Styling for Thank You Section */
.thank-you-section {
  /* background: ; */
  color: #fff;
  border-radius: 10px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}


/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-text {
      font-size: 1.8rem;
  }
  .quote {
      font-size: 1rem;
  }
}


