html {
  scroll-behavior: smooth;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #2b1055, #3a1c71, #1e3c72);
    color: #fff;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #00f5ff;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.menu-toggle{
display:block;
}

nav {
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:rgba(0,0,0,0.9);
flex-direction:column;
align-items:center;
padding:20px 0;
}

nav.active{
display:flex;
}

nav a{
margin:10px 0;
}
}

/* ================= SECTION ================= */
section {
    padding: 120px 8%;
    text-align: center;
}

.section-title {
    font-size: 40px;
    margin-bottom: 60px;
}

/* ================= SERVICES ================= */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    width: 280px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card h3 {
    margin: 15px 0;
}

.service-card p {
    font-size: 14px;
    color: #ddd;
}

/* ================= TEAM ================= */
.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card h3 {
    margin-top: 15px;
}

/* ================= PROCESS ================= */
.process-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card p {
    font-size: 14px;
    color: #ddd;
}

/* ================= PORTFOLIO ================= */

.portfolio-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #2b1055, #1a0836);
    color: white;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #bbb;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 25px;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: block;
}

.portfolio-card h3 {
    color: #00f7ff;
    margin-bottom: 15px;
}

.portfolio-card p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
}

.visit-btn {
    display: inline-block;
    margin-top: 20px;
    color: #00f7ff;
    font-weight: 600;
    transition: 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.5);
    border: 1px solid #00f7ff;
}

.portfolio-card:hover .visit-btn {
    color: white;
}

/* ================= CONTACT ================= */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: inherit;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

form button {
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(45deg, #00f5ff, #ff00c8);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

form button:hover {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .navbar nav a {
    margin: 10px;
    display: block;
  }

  section {
    padding: 40px 20px;
    text-align: center;
  }

  form {
    width: 100% !important;
  }

  input, textarea {
    width: 100%;
  }

  button {
    width: 100%;
  }
}
/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  text-align: left;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ccc;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #00f5ff;
  color: #000;
}

.btn.primary:hover {
  background: #00c3cc;
}

.btn.secondary {
  border: 2px solid #00f5ff;
  color: #00f5ff;
}

.btn.secondary:hover {
  background: #00f5ff;
  color: #000;
}

/* Services */
.services {
  padding: 100px 8%;
  text-align: center;
}

.services h2 {
  font-size: 35px;
  margin-bottom: 50px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  transition: 0.3s;
}

.card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.card h3 {
  margin-bottom: 15px;
}

/* Process */
.process {
  padding: 100px 8%;
  text-align: center;
}

.process h2 {
  font-size: 35px;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.step:hover {
  background: rgba(0,245,255,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(0,0,0,0.3);
  margin-top: 50px;
}
/* ===== HERO SPLIT LAYOUT ===== */
.hero {
  padding: 100px 8%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.hero-right img {
  width: 350px;
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px #9b5cff);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media(max-width: 768px){
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }
}

/* Responsive */
@media(max-width: 900px){
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    width: 100%;
  }

  .hero-right {
    height: 300px;
    margin-top: 40px;
  }
}
.footer{
  text-align:center;
  padding:30px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
}
/* Scroll Animation */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}
/* Floating Gradient Blobs */
body::before,
body::after{
  content:"";
  position:fixed;
  width:500px;
  height:500px;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

body::before{
  background:#ff00cc;
  top:-150px;
  left:-150px;
}

body::after{
  background:#3333ff;
  bottom:-150px;
  right:-150px;
}
.btn-primary{
  background:linear-gradient(90deg,#ff00cc,#3333ff);
  color:#fff;
  border:none;
  box-shadow:0 0 20px rgba(255,0,204,0.5);
  transition:0.4s;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 40px rgba(255,0,204,0.8);
}

/* Button Outline Style */
.btn-outline {
    display: inline-block;
    margin-top: 20px;
    margin-left: 15px;
    padding: 14px 35px;
    border: 2px solid #00f5ff;
    color: #00f5ff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #00f5ff, #ff00c8);
    color: #fff;
    border-color: #ff00c8;
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5);
    transform: translateY(-3px);
}

/* Team Section (dark theme) */
.team-section {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, rgba(15,12,41,0.8), rgba(48,43,99,0.8), rgba(36,36,62,0.8));
}

.team-section .section-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: #fff;
  font-weight: 800;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  width: 280px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 245, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: 0 15px 45px rgba(0, 245, 255, 0.2);
}

.team-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 20px;
    border: 3px solid #00f5ff;
    transition: 0.3s;
}
.team-card:hover img {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.team-card h3 {
  margin: 15px 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.team-card p {
  color: #a0a0ff;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  color: white;
  background: rgba(0, 245, 255, 0.2);
  border: 1px solid #00f5ff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00f5ff;
  color: #000;
  transform: scale(1.15);
}

.social-links a:last-child {
  background: rgba(255, 0, 204, 0.2);
  border-color: #ff00cc;
}

.social-links a:last-child:hover {
  background: #ff00cc;
  color: #fff;
}

/* Container helper */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
}

/* Team responsive */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 5%;
  }

  .team-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .team-grid {
    gap: 25px;
  }

  .team-card {
    width: 100%;
    max-width: 280px;
  }
}

/* CONTACT SECTION */
.contact{
  text-align:center;
  padding:100px 8%;
}

.contact h2{
  margin-bottom:40px;
}

/* CONTACT SECTION FIXED */

.contact h2 {
  margin-bottom: 40px;
}

/* CONTACT SECTION PROPER CENTER FIX */

.contact {
  padding: 150px 8% 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#services {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: white;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.08);
}

/* ========== PRICING SECTION ========== */
#pricing {
  padding: 80px 8%;
  text-align: center;
}

#pricing .section-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.card {
  background: rgba(255,255,255,0.04);
  padding: 28px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.card h2 {
  font-size: 28px;
  margin: 8px 0 18px;
  color: #2563eb;
}

.card p {
  color: #d9d9e6;
  margin: 6px 0;
}

.card .btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg,#2563eb,#00f5ff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37,99,235,0.12);
}

.card.featured {
  border-color: rgba(37,99,235,0.6);
  box-shadow: 0 10px 30px rgba(37,99,235,0.12);
}

@media (max-width: 768px) {
  #pricing { padding: 40px 4%; }
  .cards { grid-template-columns: 1fr; }
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
/* Process Section */
#process {
  padding: 100px 8%;
  text-align: center;
}

.process-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.process-box {
  background: rgba(255,255,255,0.05);
  padding: 30px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.process-box:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}
/* Contact Section */
#contact {
  padding: 100px 8%;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.contact-form button {
  padding: 15px;
  border-radius: 50px;
  border: none;
  background: #00f5ff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}
/* Fade In Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

/* Delay variations */
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/* Button Hover Effect */
button {
  transition: 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f5ff;
}

/* ============================= */
/* OUR PROCESS SECTION */
/* ============================= */

.process-section {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(135deg, #2b1055, #3a1c71, #1e3c72);
    color: #fff;
}

.section-title {
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.08);
}

.process-number {
    width: 40px;
    height: 40px;
    background: #00c6ff;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 auto 15px;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.process-card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* ================= CONTACT SECTION COMPLETE DESIGN ================= */

.contact-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, #2b1055, #3a1c71, #1e3c72);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,245,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,0,200,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .section-title {
    font-size: 48px;
    margin-bottom: 80px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #fff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* FORM DESIGN */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 450px;
    background: rgba(255, 255, 255, 0.04);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 245, 255, 0.15);
}

.contact-form input,
.contact-form textarea {
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    backdrop-filter: blur(10px);
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    padding: 16px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #00f5ff, #ff00c8);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5);
}

.contact-form button:active {
    transform: translateY(-1px);
}

/* INFO BOX DESIGN */

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 380px;
}

.info-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 28px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.info-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 245, 255, 0.2);
}

.info-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #00f5ff;
    font-weight: 700;
}

.info-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 245, 255, 0.1));
    color: #00f5ff;
    border: 1px solid #00f5ff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00f5ff, #7c3aed);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.4);
}

/* ================= RESPONSIVE CONTACT ================= */
@media (max-width: 1024px) {
    .contact-container {
        gap: 50px;
    }
    
    .contact-form {
        width: 100%;
        max-width: 450px;
    }
    
    .contact-info-box {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 6%;
    }

    .contact-section .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }

    .contact-info-box {
        width: 100%;
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
    }

    .contact-form button {
        padding: 14px;
        font-size: 15px;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-links a {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ================= RESPONSIVE ================= */
    font-size: 14px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 20px;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-btn.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(224, 148, 51, 0.4);
}

.social-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.social-btn.linkedin:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

/* ================= CONSULTATION BUTTON ================= */
.consult-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #00f5ff, #ff00c8);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
  font-size: 15px;
}

.consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 245, 255, 0.5);
}

/* ================= POPUP MODAL ================= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  transition: 0.3s;
}

.close-btn:hover {
  color: #e74c3c;
}

/* ===== ADMIN LOGIN BACKGROUND IMAGE ===== */
body.login-page {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("image/WhatsApp Image 2026-01-31 at 12.08.55 AM.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

/* ===== DASHBOARD PAGE STYLING ===== */
body.dashboard-page {
  background: url("image/WhatsApp Image 2026-01-31 at 12.08.55 AM.jpeg") no-repeat center center/cover;
  color: #1e293b;
}

body.dashboard-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.6);
}

body.dashboard-page h2,
body.dashboard-page h3 {
  color: #0f172a;
}

body.dashboard-page .container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 1000px;
}

body.dashboard-page button {
  margin-top: 15px;
  background: #2563eb;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
}

body.dashboard-page button:hover {
  background: #1d4ed8;
}

/* tables scroll and style */
body.dashboard-page table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

body.dashboard-page table th,
body.dashboard-page table td {
  padding: 10px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}

body.dashboard-page table thead {
  background: #1e293a;
  color: #fff;
}

body.dashboard-page table tbody tr:nth-child(even) {
  background: #f8fafc;
}

body.dashboard-page table {
  max-height: 400px;
  overflow-y: auto;
  display: block;
}

body.dashboard-page table tbody {
  display: block;
  max-height: 300px;
  overflow-y: auto;
}

/* Dark Overlay for better visibility */
body.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* Login Container */
body.login-page .container,
body.login-page .login-box {
  position: relative;
  width: 350px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  color: white;
  text-align: center;
}

/* Inputs */
body.login-page input {
  width: 100%;
  padding: 10px;
  margin: 12px 0;
  border: none;
  border-radius: 5px;
}

/* Button */
body.login-page button {
  width: 100%;
  padding: 10px;
  background: #38bdf8;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

body.login-page button:hover {
  background: #0ea5e9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .navbar nav a {
    margin: 10px;
    display: block;
  }

  section {
    padding: 40px 20px;
    text-align: center;
  }

  form {
    width: 100% !important;
  }

  input, textarea {
    width: 100%;
  }

  button {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    padding: 25px;
  }
}
