@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #333;
}

/* 🌤️ Soft light gradient background */
.background {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, #f6f9fc, #e0f7fa, #fffbea);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🌸 Floating shapes */
.floating-shapes div {
  position: absolute;
  opacity: 0.3;
  animation: float 10s infinite ease-in-out;
}

.circle {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #b3e5fc99, transparent);
  border-radius: 50%;
  top: 10%;
  left: 15%;
}

.square {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffcc8099, transparent);
  top: 70%;
  left: 75%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #aed58199;
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

.dot {
  width: 30px;
  height: 30px;
  background: #fff8;
  border-radius: 50%;
  top: 80%;
  left: 10%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(20deg); }
}

/* 🧠 Header Gallery */
.header-gallery {
  position: absolute;
  top: 20px;
  width: 95%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-img {
  width: 135px;
  height: 75px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 150, 136, 0.3);
}

.brand-title {
  text-align: center;
  margin-top: 40px;
}

.brand-title h2 {
  font-size: 1.8rem;
  color: #00796b;
  font-weight: 700;
}

/* 📱 Responsive Header */
@media (max-width: 768px) {
  .header-gallery {
    gap: 10px;
  }

  .header-img {
    width: 60px;
    height: 60px;
  }

  .brand-title h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .header-gallery {
    flex-direction: row;
    justify-content: center;
  }
  .header-img {
    width: 50px;
    height: 50px;
  }
}

/* 🏆 Certificate container */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 90%;
    color: #333;
    margin-top: 165px;
    animation: fadeIn 1.5s 
ease forwards;
    margin: auto;
    margin-top: 174px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00796b;
}

.subtitle {
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 25px;
}

/* 🎯 Input and button */
.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

input {
  padding: 12px 15px;
  border: 2px solid #b2ebf2;
  border-radius: 10px;
  width: 65%;
  outline: none;
  font-size: 1rem;
  background: #ffffffcc;
  color: #333;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #0097a7;
  box-shadow: 0 0 10px #00acc1aa;
}

button {
  background: linear-gradient(135deg, #80deea, #4dd0e1);
  color: #004d40;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 20px rgba(0, 150, 136, 0.4);
}

/* 📖 Info Section */
.info-section {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 20px;
  margin: 60px auto;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
  color: #00796b;
  margin-bottom: 15px;
  font-weight: 600;
}
.animated-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Common Button Styles */
.animated-buttons .btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Button One - Blue Gradient */
.btn-one {
  background: linear-gradient(135deg, #80deea, #4dd0e1);
  /* box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4); */
  margin-top: 20px;
}

.btn-one:hover {
  transform: translateY(-4px) scale(1.05);
  /* box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6); */
  /* background: linear-gradient(45deg, #1565c0, #64b5f6); */
}

/* Button Two - Purple Gradient */
.btn-two {
  background: linear-gradient(135deg, #80deea, #4dd0e1);
  /* box-shadow: 0 4px 15px rgba(142, 36, 170, 0.4); */
  margin-top: 20px;
}

.btn-two:hover {
  transform: translateY(-4px) scale(1.05);
  /* box-shadow: 0 6px 20px rgba(142, 36, 170, 0.6); */
  /* background: linear-gradient(45deg, #6a1b9a, #ce93d8); */
}

/* Optional: Ripple Animation on Click */
.animated-buttons .btn:active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  0% { opacity: 1; transform: scale(0); }
  100% { opacity: 0; transform: scale(2); }
}
/* events css */


.btn-one {
    background: #4CAF50;
    padding: 10px 20px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
}
.btn-one:hover {
    background: #45a049;
}

/* caresoul */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #e8f3ff;
}

.testimonial-section {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 163px;
}

.left-side {
    width: 40%;
}

.tag {
    background: #fff;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.carousel-container {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel-img {
    width: 250px;
    height: 250px;
    border-radius: 18px;
    cursor: pointer;
    transition: transform .3s;
}

.carousel-img:hover {
    transform: scale(1.05);
}

.prev, .next {
    position: absolute;
    top: 45%;
    background: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 22px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    width: 60%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    background: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 25px;
}

.modal-prev { left: 50px; }
.modal-next { right: 50px; }

/* Responsive */
@media (max-width: 768px) {
    .left-side, .carousel-container {
        width: 100%;
    }

    .modal img {
        width: 90%;
    }
}


.two-buttons {
    margin-top: 30px;
    text-align: left;   /* change to center if needed */
}

.btn-one {
    display: inline-block;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4b7bec, #3867d6);
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-one:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #3867d6, #4b7bec);
}

.btn-one:active {
    transform: scale(0.96);
}
.two-buttons {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;        /* vertical center (if needed) */
    margin-top: 40px;
    width: 100%;
}

.two-buttons .btn-one {
 background: linear-gradient(135deg, #3867d6, #4b7bec);
    color: white;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.two-buttons .btn-one:hover {
    background: #e05500;
    transform: scale(1.05);
}

/* certificate */

/* Center the whole certificate section */
.certificate-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Inner container */
.certificate-wrapper .container {
  max-width: 500px;
  width: 100%;
  text-align: center;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Title */
.certificate-wrapper h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Subtitle */
.certificate-wrapper .subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

/* Input area */
.input-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.input-box input {
  padding: 10px;
  width: 70%;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.input-box button {
  padding: 10px 20px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.input-box button:hover {
  background: #004bcc;
}

/* certificate */




