*{
    margin: 0;
    padding: 0;
}

/* nav-bar */

.navbar {
    width: 100%;
  position: sticky;
  top: 0;
  background-color: #111;
  padding: 20px 40px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    padding-left: 40px;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff8c42;
}

.btn {
  background: linear-gradient(90deg, #ff6a3d, #ffbe2e);
  padding: 10px 18px;
  border-radius: 30px;
  color: #111;
  font-weight: bold;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .btn {
    margin-top: 10px;
  }
}







/* hero-section */
body {
    
      font-family: 'Inter', sans-serif;
     /* background-color:#3a0519 ; */
   
     /* background-color: #000000; */
      /* color: white;  */
    }
    

    .container {
      
        background-color: #111;
      color: white;
      /* max-width: 1200px; */
      margin: 0 auto;
      padding: 20px 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
    }

    .leftside {
        
      flex: 1;
      min-width: 300px;
      padding-bottom: 100px;
      padding-left:50px ;
     
    }
       
    .leftside h3 span{
   color: #ff8c42;
    }

    .leftside h1 {
       
        color: white;
      font-size: 80px;
      margin-bottom: 10px;
      font-weight: 900;
    }
    .leftside h1 span{
         color: #FF7518;
    }
    .logo span{
                 color: #FF7518;
    }

    .leftside h2 {
      font-size: 24px;
      font-weight: 600;
      
      line-height: 1.4;
    }

    .leftside p {
      font-size: 14px;
      color: white;
      margin-bottom: 30px;
      max-width: 400px;
    }

    .btn {
      background: linear-gradient(90deg, #FF6A00, #FF9472);
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 14px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn:hover {
      opacity: 0.9;
    }

    .right {
      
      flex: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
  
  
    .image-box1{
        display: flex;
        gap:20px;
    }
    .image-box1 .size{
        animation: slideDown 2s ease-in-out forwards; 
        height: 400px;
        border-radius: 70px;

    }
     @keyframes slideDown      
     { from {transform: translateY(-100%);}
      to {transform: translateY(0);} }
   
        .image-box1 .size2{
                 animation: slideDown 2s ease-in-out forwards;
           width: 200px;
        height: 200px;
        border-radius: 80px;
        
    }
    .image-box1 .size3{
      animation: slideDown 2s ease-in-out forwards;
      
        height: 400px;
        border-radius: 70px;
    }
   
   
    .image-box1 .size4{
      animation: slideUp 2s ease-in-out forwards;

       width: 200px;
        height: 200px;
        border-radius: 80px;
        
    }
     @keyframes slideUp    
         { from {transform: translateY(100%);} 
         to {transform: translateY(0);} }
   
   
    .image-box1 .size5{
       animation: slideUp 2s ease-in-out forwards;
         height: 400px;
        border-radius: 70px;
       
    }
    .image-box2{
        display: flex;
       justify-content: left;
       align-items:start;
        padding-right:30% ;
        gap: 20px;
       
    }
    .image-box1 .first3{
        padding-top: 60px;
    }
   /* Animation Keyframes */
/* @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* @keyframes jump {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
  }  */

  




/* 👑 Next-level FadeUp + Stagger */
.image-box1 img {
       /* animation: jump 1s ease-in-out infinite;  */
  /* animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.4s ease; */
}

/* 🔁 Add staggered animation delays */
/* .image-box1 img:nth-child(1) { animation-delay: 0.2s; }
.image-box1 img:nth-child(2) { animation-delay: 0.4s; }
.image-box1 img:nth-child(3) { animation-delay: 0.6s; }
.image-box1 img:nth-child(4) { animation-delay: 0.8s; }
.image-box1 img:nth-child(5) { animation-delay: 1s; } */

/* 💡 Glow & lift on hover */
.image-box1 img:hover {
  transform: scale(1.06) translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 255, 255, 0.15);
  filter: brightness(1.1) saturate(1.2);
  z-index: 2;
}


/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .left, .right {
    flex: 1 1 100%;
    text-align: center;
  }

  .left h1 {
    font-size: 36px;
  }

  .left h2 {
    font-size: 20px;
  }

  .left p {
    font-size: 13px;
    max-width: 100%;
  }

  .btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .image-box1 {
    flex-direction: column;
    align-items: center;
    
  }

  .image-box1 img {
    width: 80%;
    height: auto;
    border-radius: 30px !important;
  }

  .image-box2 {
    display: none; /* Optional: hide if not used */
  }

  .image-box1 .first3 {
    padding-top: 30px;
  }
}

/* popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 47, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-box {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e1e2f;
}

.popup-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.popup-box .cta-btn {
  background-color: #ff5e57;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.popup-box .cta-btn:hover {
  background-color: #ff3e36;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  color:black;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* card */
.services-section {
   background: linear-gradient(to right, #fba54f, #ffffff);
   
  padding: 60px 40px;
  text-align: center;
}

.services-section h2 {
                     color: #FF7518;
  font-size: 2rem;
  font-weight: 700;
  
  position: relative;
  
}
.services-section h3 {
                     
  font-size: 2rem;
  font-weight: 700;
   color: black;
  position: relative;
  padding-bottom: 20px;
  
}

.services-section h2::after {
  
  display: block;
  width: 60px;
  height: 3px;
  background: #1b1b32;
  margin: 10px auto 0;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.cta-btn {
  background: linear-gradient(to right, #fd8b34, #fc5c5c);
  border: none;
  padding: 14px 26px;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}
.button-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* about */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-text small {
  text-transform: uppercase;
  color: #8d8d99;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1d1d36;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.about-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 200px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-text small {
  text-transform: uppercase;
  color: #8d8d99;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1d1d36;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.about-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.cta-btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #1d1d36;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.about-image {
  flex: 1;
  min-width: 200px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Tablet view (768px and below) */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
    gap: 20px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 10px;
  }
}
.why-choose-section {
 
  /* min-height: 10%; */
  background: linear-gradient(to right, #f4f9ff, #ffffff);
  display: flex;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
  height: 5%;
}
.why-choose-section .container {
  background-color: white;
  width: 100%;

  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.left {
  flex: 1;
  min-width: 300px;
}
.left h2 {

  font-size: 32px;
  font-weight: 700;
  color:black;
}
.left .intro {
  font-size: 17px;
  color:black;
  margin: 20px 0;
}
.stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.stats h3 {
  color: orange;
  font-size: 24px;
  margin: 0;
}
.stats p {
  margin: 5px 0 0;
  color:black;
}
.right {
  flex: 1;
  min-width: 300px;
}
.accordion .item {
  border-top: 1px solid black;
  margin-top: 10px;
}
.accordion-header {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: black;
  cursor: pointer;
  width: 100%;
  padding: 12px 0;
  position: relative;
}
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 0;
  color: black;
  font-size: 24px;
  display: flex;

} 
.accordion-header.active::after {
  content: "-";
}
.accordion-body {
  display: none;
  padding: 10px 0 20px;
  color: black;
}
.accordion-body p {
  margin: 0;
}

.hero-banner {
  /* background: url('your-image-path.jpg') center center/cover no-repeat; */
  background-color: #0a1225;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: bold;
}

.hero-content span {
  background: #ff6f00;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-top: 10px;
  font-size: 15px;
}

.hero-content a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff6f00;
  color: #1a1a1a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.section-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 10%;
  background-color: #fff;
}

.left-content {
  flex: 1;
}

.left-content h2 {
  font-size: 22px;
}

.left-content span {
  color: #ff6f00;
  font-weight: bold;
}

.left-content p {
  margin-top: 15px;
  line-height: 1.6;
}

.form-box {
  flex: 1;
  background-color: #f0f7ff;
  padding: 30px;
  border-radius: 10px;
}

.form-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.form-box span {
  color: #ff6f00;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #ff6f00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.site-footer {
  background-color: #0c162b;
  color: #fff;
  font-size: 15px;
  padding: 40px 10% 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #d4d4d4;
}

.footer-map {
  margin-top: 40px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #0a1225;
  font-size: 14px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }
}

.rank-sell-form-section {
  background: #f4f7fd;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.rank-sell-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.rank-sell-left,
.rank-sell-right {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
}

.rank-sell-left h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.orange-text {
  color: #ff6600;
}

.rank-sell-left p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.rank-sell-right h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.rank-sell-right .subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.rank-sell-right form {
  display: flex;
  flex-direction: column;
}

.rank-sell-right input,
.rank-sell-right textarea {
  font-size: 14px;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.rank-sell-right textarea {
  min-height: 100px;
  resize: vertical;
}

.rank-sell-right button {
  background-color: #ff6600;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rank-sell-right button:hover {
  background-color: #e65c00;
}

@media (max-width: 768px) {
  .rank-sell-container {
    flex-direction: column;
  }

  .rank-sell-left,
  .rank-sell-right {
    flex: 1 1 100%;
    padding: 10px;
  }
}
/* popup2 */

.trigger-btn {
      background-color: #ff8000;
      color: #fff;
      padding: 15px 30px;
      font-size: 20px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-weight: bold;
    }

    .overlay-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-box {
      background: linear-gradient(to right, #fde4d4, #ffffff);
      padding: 40px 30px;
      border-radius: 18px;
      text-align: center;
      max-width: 600px;
      width: 90%;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      position: relative;
    }

    .popup-box h1 {
      color: #0a1225;
      font-size: 30px;
      margin-bottom: 12px;
      font-weight: 800;
    }

    .popup-box h1 span {
      font-weight: 900;
    }

    .popup-box p {
      font-size: 18px;
      color: #222;
      margin-bottom: 30px;
    }

    .input-field {
      width: 100%;
      padding: 14px;
      font-size: 17px;
      border-radius: 10px;
      border: 1px solid #ccc;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .cta-btn {
      background-color: #ff8000;
      color: #fff;
      font-size: 20px;
      padding: 12px 28px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
    }

    .close-icon {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 26px;
      color: #333;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 480px) {
      .popup-box h1 {
        font-size: 24px;
      }

      .popup-box p {
        font-size: 16px;
      }

      .cta-btn {
        font-size: 18px;
      }
    }



    .cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px 30px;
  z-index: 9999;
  max-width: 500px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideIn 0.6s ease-out forwards;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-popup p {
  color:white;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-popup .learn-more {
  color: #aaf0ff;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-popup button {
  background-color: #00c37d;
  color: white;
  border: none;
  padding: 10px 26px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
  background-color: #00a76f;
}

@keyframes slideIn {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
/* callbtn */






    /* callbtn */

    .openPopupBtn {
      margin: 20px;
     background: linear-gradient(to right, #fd8b34, #fc5c5c);
      color: #fff;
      font-size: 20px;
      padding: 12px 28px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;

    }

    .openPopupBtn:hover {
      background-color: #e55b00;
    }

    /* Overlay background */
     .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
    } 

    /* Popup box */
    .popup-content {
      background: #fff;
      width: 90%;
      max-width: 900px;
      height: 90vh;
      display: flex;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .popup-content .left-section {
      background-color: #000;
      color: #fff;
      width: 50%;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .popup-content h2 {
      
      font-weight: 700;
      line-height: 1.4;
      
    }

    .highlight-orange {
      color: #ff6a00;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #e5e5e5;
  box-sizing: border-box; /* ensures padding doesn't add extra width */
}


    select {
     width: 100%;
      font-weight: 600;
    }

    textarea {
       
      height: 100px;
      resize: none;
    }

    button[type="submit"] {
      background-color: #ff6a00;
      color: #000;
      font-weight: bold;
      font-size: 1.1rem;
      border: none;
      border-radius: 10px;
      padding: 10px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    button[type="submit"]:hover {
      background-color: #e55b00;
    }

    .right-section {
      width: 50%;
      background: url('https://images.unsplash.com/photo-1629904853716-f0bc54eea481?fit=crop&w=1800&q=80') center/cover no-repeat;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      color: black;
      font-size: 28px;
      border: none;
      cursor: pointer;
      z-index: 1000;
    }

    @media(max-width: 768px) {
      .popup-content {
        flex-direction: column;
        height: auto;
      }

      .popup-content .left-section, .right-section {
        width: 100%;
      }

      .right-section {
        height: 200px;
      }

      .popup-content h2 {
        font-size: 1.4rem;
      }
    }

/* socialpopup */
    .popup-container {
    /* background: rgba(255, 255, 255, 0.1); */
    background-color: white;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
     
      border-radius: 20px;
      padding: 40px 30px;
      max-width: 400px;
      width: 90%;
      text-align: center;
     
      position: relative;
      animation: fadeInUp 0.5s ease;














    }

    @keyframes fadeInUp {
      from {
        transform: translateY(50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .popup-container h2 {
      color: black;
      margin-bottom: 10px;
      font-size: 26px;
    }

    .popup-container p {
      color: black;
      font-size: 14px;
      margin-bottom: 25px;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .social-icons a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.1);
      transition: 0.3s;
    }

    .social-icons a:hover {
      
      transform: scale(2.2);
    }

    .social-icons img {
      width: 24px;
      height: 24px;
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 24px;
      
      background: transparent;
      border: none;
      cursor: pointer;
    }

    /* Button to trigger */
    .open-popup-btn {
      padding: 12px 24px;
      border: none;
      background-color: #fff;
      color: #1e3c72;
      font-weight: bold;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .open-popup-btn:hover {
      background-color: #ff9800;
      color: #fff;
    }