/* This stylesheet defines the styles for the header section of the website, including the background color, size, and position. 
It also defines the styles for the navigation bar, including the font, color, size, and hover effects. The stylesheet also defines the styles for a text box that appears 
in the header section, including the font size, color, and animation effect. Additionally, the stylesheet defines styles for a login form, including the input fields, 
placeholders, and colors. 
The CSS code defines the styles for various elements such as headings, inputs, buttons, containers, and so on. These styles determine the font, color, size, position, 
and other visual aspects of the elements. The CSS code in your question sets styles for different classes, including .coinfo, .footer, .atprocess, .dnprocess, 
and .ytvid, among others.*/
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
.home {
  background-image: radial-gradient(rgba(238, 235, 235, 0), rgb(48, 42, 42)), url('./resources/background22.jpg');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  margin-top: 80px;
  width: 100%;
}
nav {
  display: flex;
  background-color: rgb(247, 226, 187);
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.559);
  height: 80px;
  width: 100%;
  /* position: sticky; */
  top: 0;
  overflow: hidden;
  z-index: 2000;
  position: fixed;
  transition: top ease-in-out 0.8s;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
nav .a {
  margin-left: 2.5%;
  display: flex;
}
nav img{
  width: 150px;
  /* background-color: #11ABB0; */
}
.nav-links {
  text-align: right;
  width: 750px;
  /* background-color: #11ABB0; */
}
.nav-links ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-links ul li{
  list-style: none;
}
.nav-links ul li a{
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-family:opensans-bold , sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .2s ease-in-out;
  padding: 10px;
  border-radius: 5px;
}

#emergency a {
  /* background-color: rgba(175, 9, 9, 0.755); */
  color: rgb(201, 11, 11);
}

/* #emergency a:hover {
  background-color: rgba(175, 9, 9, 0.755);
  color: white;
} */
.nav-links a:hover {
  background-color: rgba(170, 151, 117, 0.531);
}
.nav-links ul li::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #4E4E50;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after{
  width: 80%;
}

.register {
  text-align: right;
  margin-right: 2.5%;
  /* background-color: #11ABB0; */
  /* background-color: rgb(221, 47, 3); */
  height: fit-content;
}

.register ul{
  width: 205px;
  display: flex;
  /* align-content: center; */
  justify-content: space-between;
  flex-wrap: wrap;
  
}

.register ul li{
  list-style: none;
}

.register ul li a{
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-family:opensans-bold , sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .1s ease-in-out;
  padding: 12px;
  border: 1px solid black;
  border-radius: 5px;
}
#signup a{
  background-color: rgb(221, 5, 5);
  color: rgb(255, 255, 255);
}
#signin a:hover {
  background-color: rgba(170, 151, 117, 0.531);
}
#signup a:hover {
  background-color: rgb(176, 5, 5);
}
/* Add to your CSS */
#profile-icon {
  margin-left: auto; /* This pushes the profile icon to the right */
}

/* Red animation for profile icon */
#profile-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #000000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#profile-icon a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff4444, #cc0000, #ff4444);
  background-size: 200% 200%;
  border-radius: 50%;
  z-index: -1;
  animation: pulseBackground 2s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#profile-icon a:hover::before {
  opacity: 1;
}

@keyframes pulseBackground {
  0% {
    background-position: 0% 50%;
    transform: scale(1);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.05);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1);
  }
}

#profile-icon a:hover {
  background-color: transparent; /* Remove the solid background on hover */
  transform: scale(1.1);
  border-color: #ff4444;
}

#profile-icon i {
  position: relative;
  z-index: 1;
  color: #000000;
  transition: color 0.3s ease;
}
#profile-icon a:hover i {
  color: #ffffff;
}
/* .register ul li::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #4E4E50;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.register ul li:hover::after{
  width: 80%;
} */
.shortdetails {
  margin-right: 5%;
  /* width: 200px; */
  /* background-color: #065f46; */
  display:flex ;
  flex-direction: column;
  justify-content: space-between;
  /* justify-content: center; */
}
.heading {
  height: 300px;
  width: 800px;
  /* background-color: #00eeff; */
  position: relative;
}
.text-box {
  width: max-content;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  /* animation: animate 4s ease-in-out infinite; */
  /* -webkit-text-stroke: 2px #ff004c; */
}
.text-box h1 {
  font-size: 110px;
}
.text-box h1 span {
  color: #e70909;
  animation: animate 4s ease-in-out infinite;
  -webkit-text-stroke: 2px rgb(245, 245, 245);
}
@keyframes animate
{
  0%,100%
  {
     clip-path: polygon(0% 45%, 15% 44%, 32% 50%,
           54% 60%, 70% 61%, 84% 59%, 100% 52%,
           100% 100%, 0% 100%);
  }
  50%
  {
     clip-path: polygon(0 60%, 16% 65%, 34% 66%,
           51% 62%, 67% 50%, 84% 45%, 100% 46%, 100%
         100%, 0% 100%)
  }
}
.blood{
  width: max-content;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.blood h1{
  font-size: 110px;
}
.blood h1 span{
  -webkit-text-stroke: 2px #ff0505;
  /* -webkit-text-stroke: 2px whitesmoke; */
}
.blood p{
  font-size: 28px;
  color: transparent;
}
.shortdescrip {
  height: 180px;
  width:100%;
  /* background-color: #065f46; */
}
.homedescrip {
  display: flex;
  height: 90vh;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  /* background-color: #950740; */
}
.animated-text-container {
  width: 40%;
  /* background-color: #c6c0cf; */
  margin-left: 5%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
  align-items: left;
  flex-direction: column;
  /* background-color: #065f46; */
}
.animated-text {
  font-size: 2.9rem;
  font-weight: 550;
  text-align: left;
  position: relative;
  color: rgb(255, 249, 236);
  /* background-color: #00eeff; */
}
.changing-words {
  display: inline-block;
  height: 70px;
  width: auto;
  overflow: hidden;
  vertical-align: top;
  position: relative;
  text-align: left;
  /* background-color: #f4e7a4; */
  /* border-radius: 20px; */

}
.words-wrapper {
  position: relative;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}     
.word {
  display: block;
  padding: 0 5px;
  color: #fd7272;
  font-style: italic;
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.474); */
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
  height:70px;
  line-height: 70px;
  width: 100%;
}
.textdescription {
  padding-top: 30px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  width: 650px;
  /* background-color: #00eeff; */
}
.homepagebuttons {
  /* background-color: #00eeff; */
  display: flex;
  justify-content: space-between;
  /* align-self: center; */
  width: 350px;;
}
.homepagebuttons a button{
  color: white;
  padding: 15px 30px;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 30px;
}
#aboutus {
  background-color: rgba(128, 128, 128, 0);
  border: none;
  /* backdrop-filter: blur(4px); */
}
#aboutus:hover{
  background-color: rgba(143, 139, 139, 0.791);
  cursor: pointer;
}
#explorenow {
  background-color: rgb(186, 12, 12);
  border: none;
}
#explorenow:hover {
  background-color: rgba(143, 139, 139, 0.629);
  background-color: rgb(164, 5, 5);
  cursor: pointer;
}
.shortdetails {
  margin-right: 5%;
}








/* .service {
  min-height: 100vh;
  width: 100%;
  background-color: rgb(254, 244, 222);
  display: flex;
  flex-direction: column;
} */
 .service {
            min-height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        /* Enhanced background with multiple gradients and shapes */
        .service::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(168, 0, 0, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 70%, rgba(168, 60, 0, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 50% 30%, rgba(80, 0, 80, 0.1) 0%, transparent 30%),
                linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            z-index: 1;
        }
        
        /* Animated floating elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            filter: blur(40px);
            z-index: 2;
            animation: float 15s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            background: rgba(180, 0, 0, 0.1);
        }
        
        .floating-element:nth-child(2) {
            width: 400px;
            height: 400px;
            top: 60%;
            right: 5%;
            animation-delay: -5s;
            background: rgba(120, 60, 0, 0.08);
        }
        
        .floating-element:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 15%;
            left: 15%;
            animation-delay: -10s;
            background: rgba(80, 0, 80, 0.08);
        }
        
        /* Grid pattern overlay */
        .service::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 3;
            pointer-events: none;
        }
        
        /* Animated particles */
.particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            z-index: 4;
            animation: particleFloat 15s infinite linear;
            /* Add these properties to ensure proper positioning */
            top: 0;
            transform: translateY(0);
        }
@keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(-20px, 20px) rotate(5deg);
            }
            50% {
                transform: translate(10px, -15px) rotate(-3deg);
            }
            75% {
                transform: translate(15px, 10px) rotate(2deg);
            }
        }
        
    @keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}
.row1 {
  height: 50vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  /* background-color: #008b02; */
}
.row2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  /* background-color: #4c5d9c; */
  margin-bottom: 2%;
}
.feature1 {
  border-radius: 30px;
  /* background: #fcd777; */
  /* background: rgba(30, 30, 30, 0.5); */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 300px;
  width: 47%;
  overflow: hidden;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature1:hover {
  transform: translateY(-2px);
  background: rgba(123, 123, 123, 0.226);
  backdrop-filter: blur(10px);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}
.feature2 {
  border-radius: 30px;
  /* background: #fd9d8a; */
  /* background: rgba(30, 30, 30, 0.5); */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 300px;
  width: 47%;
  overflow: hidden;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature2:hover {
  transform: translateY(-2px);
  background: rgba(123, 123, 123, 0.226);
  backdrop-filter: blur(10px);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}
.feature3 {
  /* background: rgba(30, 30, 30, 0.3); */
  /* background: radial-gradient(#a59d9d, #807b7b); */
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 330px;
  overflow: hidden;
  width: 96%;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.5s ease-in-out;

  /* position: relative; */
}
.feature3:hover {
  transform: translateY(-2px);
  background: rgba(123, 123, 123, 0.226);
  backdrop-filter: blur(10px);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}
.demand_fore {
  width: 50%;
}
.demand_fore .feature-icon {
  float: left;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  font-size: 2rem;
  color: white;
}
.demand_fore h2 {
  color: #d9d9d9;
  font-size: 28px;
  text-align: left;
  line-height: 30px;
  width: 70%;
  float: left;
  margin-left: 20px;
  margin-bottom: 15px;
}
.demand_fore p {
  color: #aaaaaa;
  font-size: 18px;
  font-weight: 500;
  /* padding-top: 20px; */
  /* background-color: #051896; */
  width: 95%;
  display: inline-block;
  padding-top: 10px;
}
.demandspace {
  height: 300px;
  width: 40%;
  align-items: center;
}
.demand_icon {
  position: absolute;
}
.feature1 .demand_fore .feature-icon {
  background: linear-gradient(135deg, #ff011a 0%, #9a000f 100%);
}
/* .feature2 .demand_fore .feature-icon {
  background: linear-gradient(135deg, #ff011a 0%, #9a000f 100%);
}
.feature3 .demand_fore .feature-icon {
  background: linear-gradient(135deg, #ff011a 0%, #9a000f 100%);
} */
.feature2 .demand_fore .feature-icon {
  background: linear-gradient(135deg, #bca250 0%, #927000 100%);
}
.feature3 .demand_fore .feature-icon {
  background: linear-gradient(135deg, #7f7f7f 0%, #363535 100%);
}
.feature3 .demandspace {
  width: 18%;
}
.alwaysdiaplay {
  height: 330px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* background-color: #065f46; */
}
.demand_fore button {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 0.2rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  background-color: #2f5ad0;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}
.material-symbols-outlined {
  margin-top: 1px;
  font-size: 1.2rem;
}
.demand_fore button:hover{
  background-color: #214198;

}
.mapfeature {
  height: 85%;
  width: 25%;
  border-radius: 15px;
  background-color: rgb(85, 85, 85);
  border-top: 2x solid #FFFFFF75;
  border-left: 2x solid #FFFFFF75;
  box-shadow: 5px 5px 15px #00000035;
  position: relative;
  overflow: hidden;
  /* backdrop-filter: blur(4px); */
}
.animation-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); */
  border-radius: 12px;

}     
.slide {
  position: absolute;
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 5%;
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}        
.slide.active {
  opacity: 1;
  transform: translateX(0);
  background-color: transparent;
}     
.slide.next {
  transform: translateX(100%);
}     
.slide.prev {
  transform: translateX(-100%);
}    
.step-num {
  background: #131989;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}       
.step-ttl {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #419dcf;
}
.step-dec {
  color: #ffffff;
  font-size: 1rem;
}
.navigation-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #419dcf;
}
/* Map Expansion Styles - FIXED */
.mapexpansion {
  height: 0;
  width: 92.5%;
  overflow: hidden;
  transition: height 1s ease-in ease-out 0.8s;
  background-color: white;
  border-radius: 30px 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  /* position: relative; */
}
.mapexpansion.expanded {
  height: auto;
  padding: 30px;
  margin-top: 0.5%;
  margin-bottom: 2%;
  opacity: 1;
  display: flex;
  flex-direction: column;
  height: auto;
  /* background-color: #131989; */
}  
/* Map Widget Styles */
.mapexpansion.expanded #pb_widget {
  opacity: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  /* background-color: #131989; */
}
#mapExpansion h2 {
color: #2f5ad0;
margin-bottom: 10px;
align-self: flex-start;
/* margin-left: 2%; */
font-size: 2rem;
}
#mapExpansion p {
  /* margin-left: 4.6%; */
  color: #8d8d8d;
}
.state {
  color: #666;
  /* margin-bottom: 15px; */
  /* height: 50px; */
  padding-bottom: 30px;
  /* background-color: green; */
}
 .inputs {
  display: flex;
  flex-direction: row;
            justify-content: space-between;
            align-items: flex-start; /* Changed from flex-start to stretch */
            gap: 30px;
        }
        
.grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  height: 380px;
  /* background-color: #059669; */
}
.grid > div {
  margin-bottom: 20px;
}
        
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  font-size: 14px;
}
        
select, input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}
#pb_radius {
  width: 93%;
}
        select:focus, input:focus {
            outline: none;
            border-color: #2f5ad0;
            box-shadow: 0 0 0 3px rgba(47, 90, 208, 0.2);
        }
        
        #pb_check_btn {
            background: linear-gradient(135deg, #2f5ad0, #3b82f6);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 6px rgba(47, 90, 208, 0.2);
        }
        
        #pb_check_btn:hover {
            background: linear-gradient(135deg, #214198, #2563eb);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(47, 90, 208, 0.3);
        }
        
        #pb_check_btn:active {
            transform: translateY(0);
        }
        
        .divider {
            /* display: flex; */
            border-left: 2px solid #e2e8f0;
            height: auto ;
            margin: 12px 0;
            align-self: stretch;

        }
        
        .map-container {
            width: 65%;
            display: flex;
            flex-direction: column;
            min-height: 350px;
            position: relative;
            overflow: hidden;
        }
        
        #pb_map {
            width: 100%;
            height: 380px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1;
            transition: transform 0.5s ease;
        }
        
        /* Status Messages */
        #pb_msg {
            display: none;
            margin: 10px 0;
            padding: 10px;
            text-align: left;
            border-radius: 8px;
            font-size: 18px !important;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .status-loading {
            background-color: #dbeafe;
            color: #1e40af;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .status-success {
            background-color: #dcfce7;
            color: #166534;
        }
        
        .status-error {
            background-color: #fee2e2;
            color: #b91c1c;
        }
        
        /* Results Section */
        .results-container {
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            /* background-color: #059669; */
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .results-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
        }
        
        .view-all-btn {
            background: none;
            border: none;
            color: #2f5ad0;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .view-all-btn:hover {
            background-color: #edf2ff;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 2%;
            /* margin-top: 10px; */
        }
        
        .result-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            width: 95%;
        }
        
        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .bank-name {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }
        
        .bank-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #4a5568;
        }
        
        .detail-item i {
            color: #2f5ad0;
            width: 20px;
        }
        
        .prebook-btn {
            background: linear-gradient(135deg, #1059b9, #343ed3);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .prebook-btn:hover {
            background: linear-gradient(135deg, #051896, #4010b9);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(50, 16, 185, 0.3);
        }
        
        /* All Results View */
        .all-results-container {
            position: absolute;
            top: 0;
            right: -110%;
            width: 100%;
            height: 100%;
            background: white;
            /* padding: 20px; */
            border-radius: 12px;
            overflow-y: auto; /* Make it scrollable */
            transition: right 0.5s ease;
            z-index: 2;
        }
        
        .all-results-container.active {
            right: 0;
            background-color: white;
        }
        
        .all-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-radius: 10px;
            /* margin-left: 15; */
            padding: 15px;
            /* height: 100px; */
            /* align-self: flex-start; */
            /* border-bottom: 1px solid #e2e8f0; */
            position: sticky; /* Add this */
            top: 0; /* Add this */
            background: rgb(216, 237, 255); /* Add this to prevent content showing through */
            z-index: 10; /* Add this to ensure it stays above other content */
        }
                
        .back-to-map {
            background: none;
            border: none;
            color: #2f5ad0;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .back-to-map:hover {
            background-color: #edf2ff;
        }
        
        .all-results-grid {
            display: flex; /* Changed from grid to flex */
            flex-direction: column; /* Make it a list format */
            align-items: center;
            gap: 20px;
            /* width: 90%; */
        }
        
        /* Prebooking Modal */
.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
            background-color: rgba(128, 128, 128, 0.489);
            backdrop-filter: blur(5px);
        }
        
        .prebook-modal {
            background: white;
            border-radius: 12px;
            width: 85%;
            /* height: 90%; */
            /* max-width: 600px; */
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active .prebook-modal {
            transform: translateY(0);
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .modal-title {
            font-size: 22px;
            font-weight: 600;
            color: #2f5ad0;
        }
        
        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #94a3b8;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            color: #64748b;
        }
        
        #prebookForm {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            /* width: 91%; */
        }
        
        /* @media (min-width: 640px) {
            .form-row-2 {
                grid-template-columns: 1fr 1fr;
            }
            
            .form-row-4 {
                grid-template-columns: 1fr 1fr;
            }
        } */
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }
        
        .form-group input,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            width: 90%;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #2f5ad0;
            box-shadow: 0 0 0 3px rgba(47, 90, 208, 0.2);
        }
        
        .age-gender-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #2f5ad0, #3b82f6);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background: linear-gradient(135deg, #214198, #2563eb);
        }
        
        /* Animation for status messages */
        @keyframes pulse1 {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }
        
        .pulse1 {
            animation: pulse1 1.5s infinite;
        }
/* Close button */
.close-btn {
  /* position: absolute; */
  align-self: flex-end;
  /* margin: 30px 30px; */
  background: #ff5f5f;
  color: rgb(255, 255, 255);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  /* font-weight: bold; */
  z-index: 1000;
  opacity: 0;
  /* transition: opacity 0.3s ease-in-out 0.5s; */
}
.mapexpansion.expanded .close-btn {
  opacity: 1;
}
/* .close-btn:hover {
  background: #ff6b81;
  transform: scale(1.05);
} */
/* Adjust feature3 when expanded */
.feature3.expanded {
  height: auto;
  transition: height 1s ease-in ease-out 0.8s;
}












.info1 {
  height: 60vh;
  width: 100%;
  background-image: radial-gradient(rgba(238, 235, 235, 0), rgb(48, 48, 48)), url('./resources/rbc10.jpg');
  background-size: cover;
  background-position: center;
}
.information {
  background-color: rgba(159, 137, 137, 0.558);
  /* border-right:2px solid rgba(102, 102, 102, 0.246); */
  height: 100%;
  width: 50%;
  backdrop-filter: blur(6px);
}
.information h2 {
  padding: 5%;
  color: rgb(255, 226, 226);
  padding-bottom: 2%;
  font-size: 40px;
  text-align: left;
}
.information p {
  color: rgb(255, 255, 255);
  font-size: 20px;
  padding: 5%;
  padding-top: 0;
  text-align: justify;
}










.blood-donation-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, #232323 0%, #000000 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Decorative blood cells */
        .blood-cell {
            position: absolute;
            border-radius: 50%;
            background: rgba(214, 0, 0, 0.188);
            filter: blur(5px);
        }
        
        /* Header styling */
        .section-head {
            text-align: center;
            padding: 20px 20px 30px;
            z-index: 2;
        }
        
        .section-head h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            background: linear-gradient(to right, #ff6b6b, #ff8e8e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
        }
        
        .section-head p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: #ccc;
        }
        
        /* Content area */
        .content-container {
            display: flex;
            flex: 1;
            padding: 0 40px 40px;
            gap: 40px;
            z-index: 2;
        }
        
        /* Blood groups grid */
        .blood-groups {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            width: 45%;
        }
        
        .blood-group {
            background: linear-gradient(145deg, #1e1e1e, #252525);
            border-radius: 15px;
            padding: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 2px solid #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .blood-group:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
            border-color: #ff6b6b;
        }
        
        .blood-group.active {
            background: linear-gradient(145deg, #2a1e1e, #352525);
            border-color: #ff4757;
            box-shadow: 0 0 25px rgba(255, 71, 87, 0.4);
        }
        
        .blood-type {
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: #ff6b6b;
            text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        }
        
        .blood-group.active .blood-type {
            color: #ff8e8e;
            text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
        }
        
        .blood-group-name {
            font-size: 1.1rem;
            color: #ccc;
            text-align: center;
        }
        
        /* Compatibility info */
        .compatibility-info {
            width: 50%;
            background: linear-gradient(145deg, #1a1a1ac8, #1f1f1fc5);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 2px solid #333;
            display: flex;
            flex-direction: column;
        }
        
        .info-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }
        
        .info-header h2 {
            font-size: 2rem;
            background: linear-gradient(to right, #ff6b6b, #ff8e8e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
.selected-group {
  width: 100%;
  display: flex;
  justify-content: center;
}
.blood-type-display{
  color: white;
  text-align: center;
  padding: 8px 20px;
  border-radius: 20px;
  /* background: linear-gradient(145deg, #181818, #3d2323); */
  border: 1px solid #ff4757;
  display: inline-block;
}
        .info-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
            flex: 1;
        }
        
        .donation-direction {
            text-align: center;
            font-size: 1.5rem;
            color: #ff8e8e;
            margin: 10px 0;
        }
        
        .compatibility-row {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .compatibility-box {
            flex: 1;
            background: #252525;
            border: 1px solid rgb(52, 52, 52);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            /* box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); */
        }
        
        .compatibility-title {
            font-size: 1.2rem;
            color: #ff8e8e;
            margin-bottom: 15px;
        }
        
        .compatibility-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        
        .compatibility-item {
            background: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            color: #fff;
        }
        
        .can-give .compatibility-item {
            background: linear-gradient(145deg, #2e1e1e, #502525);
            border: 1px solid #ff4757;
        }
        
        .can-receive .compatibility-item {
            background: linear-gradient(145deg, #2e2e1e, #505025);
            border: 1px solid #ffeaa7;
        }
        
        .instructions {
            text-align: center;
            margin-top: 20px;
            color: #888;
            font-style: italic;
        }
        
        /* Blood drip animation */
        .blood-drip {
            position: absolute;
            top: -50px;
            width: 20px;
            height: 50px;
            background: rgba(255, 71, 87, 0.6);
            border-radius: 0 0 10px 10px;
            filter: blur(2px);
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
            z-index: 2;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .content-container {
                flex-direction: column;
                padding: 0 20px 20px;
            }
            
            .blood-groups, .compatibility-info {
                width: 100%;
            }
            
            .section-header h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .blood-groups {
                grid-template-columns: 1fr;
            }
            
            .section-header h1 {
                font-size: 2rem;
            }
            
            .blood-type {
                font-size: 2rem;
            }
        }




















.donation-process {
            min-height: 100vh;
            width: 100%;
            padding-bottom: 80px;
            position: relative;
            background: linear-gradient(to bottom, #110000, #010101);
            overflow: hidden;
            scroll-behavior: smooth;
        }
        
        /* Animated background with particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 121, 121, 0.307);
            z-index: 1;
            animation: particleFloat 20s infinite linear;
        }
        
@keyframes particleFloat {
0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(720deg);
                opacity: 0;
            }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .section-header h1 {
            font-size: 3.5rem;
            padding-top: 40px;
            margin-bottom: 20px;
            background: linear-gradient(to right, #ff8080, #ff7c7c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 174, 0, 0.3);
        }
        
        .section-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: #ccc;
        }
        
        /* Process container */
        .process-container {
            position: relative;
            max-width: 90%;
            margin: 0 auto;
            padding: 40px 0;
            display: flex;
            flex-direction: column;
            gap: 150px;
        }
        
        /* Curved flow line using SVG */
        .flow-line-container {
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            width: 300px;
            z-index: 2;
            overflow: hidden;
            transform: translateX(-50%);
        }
        
        .flow-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Process steps */
        .process-step {
            position: relative;
            width: 100%;
            display: flex;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            z-index: 4;
        }
        
        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Left-aligned steps */
        .step-left {
            justify-content: flex-start;
        }
        
        /* Right-aligned steps */
        .step-right {
            justify-content: flex-end;
        }
        
        /* Connection points */
        .connection-point {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 24px;
            height: 24px;
            background: #ff6b6b;
            border: 4px solid rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.8);
        }
        
        /* Horizontal connection lines */
        .horizontal-line {
            position: absolute;
            top: 50%;
            height: 2px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
            z-index: 3;
            width: 0;
            transition: width 1s ease;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
            transform: translateY(-50%);
        }
        
        .step-left .horizontal-line {
            left: calc(50% + 12px);
        }
        
        .step-right .horizontal-line {
            right: calc(50% + 12px);
            background: linear-gradient(to left, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
        }
        
        .process-step.visible .horizontal-line {
            width: calc(25% - 30px);
        }
        
        /* Circular image block at the end of horizontal lines */
        .image-block {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
            z-index: 7;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.8s ease 0.5s;
        }
        
        .step-left .image-block {
            left: calc(75%);
            background: linear-gradient(145deg, #ff6b6b, #8a0000);
        }
        
        .step-right .image-block {
            right: calc(75%);
            background: linear-gradient(145deg, #8a0000, #ff6b6b);
        }
        
        .process-step.visible .image-block {
            opacity: 1;
        }
        
        .image-block i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Step content */
        .step-content {
            background: linear-gradient(145deg, rgba(42, 0, 0, 0.9), rgba(26, 0, 0, 0.9));
            border: 2px solid rgba(255, 107, 107, 0.7);
            border-radius: 15px;
            padding: 30px;
            width: 38%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.2);
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .step-left .step-content {
            border-left: 6px solid rgba(255, 255, 255, 0.9);
        }
        
        .step-right .step-content {
            border-right: 6px solid rgba(255, 255, 255, 0.9);
        }
        
        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 0, 0, 0.3);
            border-color: #ff6b6b;
        }
        
        .step-number {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, #ff6b6b, #8a0000);
            color: #fff;
            border: 4px solid rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 26px;
            font-weight: bold;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
            z-index: 6;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .step-icon {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.9);
            display: inline;
        }
        .step-title {
            font-size: 24px;
            padding-left: 10px;
            color: #ff8a8a;
            text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
            display: inline;
        }
        
        .step-description {
          margin-top: 15px;
            color: #e0e0e0;
            line-height: 1.6;
        }
        
        
        /* Subtle glow effect */
        .glow-effect {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(50px);
            z-index: 0;
        }
        
        .glow-effect:nth-child(1) {
            top: 10%;
            right: 10%;
        }
        
        .glow-effect:nth-child(2) {
            bottom: 20%;
            left: 15%;
        }
        
        /* Responsive design */
        @media screen and (max-width: 900px) {
            .step-content {
                width: 85%;
                margin: 40px auto 0;
            }
            
            .step-left, .step-right {
                justify-content: center;
            }
            
            .horizontal-line, .image-block {
                display: none;
            }
            
            .flow-line-container {
                left: 40px;
                width: 4px;
            }
            
            .step-number {
                left: 40px;
                transform: translateX(-50%);
            }
            
            .connection-point {
                left: 40px;
            }
        }
        
        @media screen and (max-width: 600px) {
            .section-header h1 {
                font-size: 2.5rem;
            }
            
            .step-title {
                font-size: 20px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .step-number {
                left: 20px;
            }
            
            .connection-point {
                left: 20px;
            }
            
            .flow-line-container {
                left: 20px;
            }
        }
        
        /* Pulse animation for connection points */
        @keyframes pulse {
            0% { 
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
                transform: translate(-50%, -50%) scale(1);
            }
            70% { 
                box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
                transform: translate(-50%, -50%) scale(1.1);
            }
            100% { 
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
                transform: translate(-50%, -50%) scale(1);
            }
        }
        
        .process-step.visible .connection-point {
            animation: pulse 2s infinite;
        }










        footer {
            background-color: #000000;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #ff6b6b;
        }
        .footer-about {
          padding-left: 5%;
        }
        .footer-about p {
            margin-bottom: 20px;
            max-width: 300px;
        }
        
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #ff6b6b;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #ff6b6b;
        }
        .newsletter {
          padding-right: 5%;
        }
        .newsletter p {
            margin-bottom: 20px;
            max-width: 300px;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 15px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            outline: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            border-radius: 0 4px 4px 0;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #ff5252;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #ff6b6b;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 0.9rem;
        }
        
        .ai-badge {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #8a0303);
            padding: 5px 15px;
            border-radius: 20px;
            margin-top: 10px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 40px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 4px;
                padding: 12px;
            }
        }



.chatbase-chat-container {
  background-color: brown !important;
}

/* For the header */
.chatbase-header {
  background-color: brown !important;
}






















