@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');



/* --- Custom Variables --- */
:root {
    --primary-color: #00aaff;
    --primary-hover: #0088cc;
    --dark-bg: #0d0d1a;
    --light-bg: #1a1a2e;
    --text-color: #f0f0f0;
    --text-muted: #a0a0b0;
    --border-color: #2a2a4a;
}

/* --- Base & Page Transitions --- */
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    background: linear-gradient(135deg, #0d253f, #0d47a1);
    background-attachment: fixed;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Header & Navigation --- */
.header {
    background-color: rgba(13, 37, 63, 0.5); /* Darker blue with transparency */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-brand { color: #fff; font-weight: 700; }
.logo { height: 40px; margin-right: 10px; }
.nav-link {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* --- Content & Cards --- */
.page-content, main {
    padding-top: 120px;
    padding-bottom: 80px;
}
.content-container { position: relative; z-index: 2; }
.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}
.info-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.btn { border-radius: 50px; padding: 12px 30px; font-weight: 600; }
.btn-primary, .btn-light {
    background-color: #00BFFF;
    border: none;
    color: #fff;
}
.form-control {
    background-color: rgba(0,0,0,0.2);
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: #fff; padding: 1rem;
}
.form-control::placeholder { color: rgba(255,255,255,0.7); }
.form-control:focus {
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    background-color: rgba(0,0,0,0.3);
	color: #fff;
}


/* --- Animated Background --- */
.animation-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.2); /* Themed particles */
    animation: float 25s infinite linear;
}
.particle-1 { width: 60px; height: 60px; left: 15%; bottom: -60px; animation-duration: 20s; animation-delay: -2s; }
.particle-2 { width: 80px; height: 80px; left: 40%; bottom: -80px; animation-duration: 30s; animation-delay: -10s; }
.particle-3 { width: 40px; height: 40px; left: 70%; bottom: -40px; animation-duration: 18s; animation-delay: -5s; }
.particle-4 { width: 100px; height: 100px; left: 90%; bottom: -100px; animation-duration: 25s; animation-delay: 0s; }

@keyframes float {
    to { transform: translateY(-120vh) rotate(600deg); opacity: 0; }
}

/* --- Content Animations --- */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }





/* --- New Home Page Logo Style --- */
/* --- Logo Animation (Pulsate Only) --- */
/* --- Sequenced Logo Animation (Fade-in then Pulse) --- */

/* 1. The initial fade-in-up animation */
@-webkit-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translateY(30px); } to { opacity: 1; -webkit-transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* 2. The looping pulsate animation */
@-webkit-keyframes logo-pulse {
  0%, 100% { border-color: rgba(0, 191, 255, 0.4); -webkit-box-shadow: 0 0 45px rgba(0, 191, 255, 0.2); }
  50% { border-color: rgba(0, 191, 255, 0.7); -webkit-box-shadow: 0 0 60px rgba(0, 191, 255, 0.5); }
}
@keyframes logo-pulse {
  0%, 100% { border-color: rgba(0, 191, 255, 0.4); box-shadow: 0 0 45px rgba(0, 191, 255, 0.2); }
  50% { border-color: rgba(0, 191, 255, 0.7); box-shadow: 0 0 60px rgba(0, 191, 255, 0.5); }
}
.home-logo {
    max-width: 280px; /* Control the max size */
    width: 100%;
    border-radius: 50%; /* Make it a perfect circle */
    margin: 0 auto 2rem auto; /* Center it and add space below */
    display: block;
    padding: 1.5rem; /* Space between logo image and border */
    background-color: rgba(13, 71, 161, 0.2); /* Themed semi-transparent background */
    border: 3px solid rgba(0, 191, 255, 0.4); /* Themed border */
    box-shadow: 0 0 45px rgba(0, 191, 255, 0.2); /* A soft glow effect */
	/* Animation: name duration timing-function delay iteration-count fill-mode */
  -webkit-animation:
    fadeInUp 0.8s ease-out 0s 1 forwards,
    logo-pulse 3s ease-in-out 0.8s infinite;
  animation:
    fadeInUp 0.8s ease-out 0s 1 forwards,       /* 1. Plays first for 0.8s, then stops */
    logo-pulse 3s ease-in-out 0.8s infinite;    /* 2. Starts after a 0.8s delay and loops forever */
	
    
}

.solution-icon {
    font-size: 4rem;
    color: var(--primary-color);
    }




/* --- 404 Page Glitch Effect --- */

.glitch-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glitch {
  position: relative;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 5px;
  -webkit-animation: glitch-skew 1s infinite linear alternate-reverse;
  animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* Match page background */
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00c1; /* Magenta for glitch effect */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  -webkit-animation: glitch-anim 5s infinite linear alternate-reverse;
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1; /* Cyan and Magenta */
  -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  -webkit-animation: glitch-anim2 1s infinite linear alternate-reverse;
  animation: glitch-anim2 1s infinite linear alternate-reverse;
}

/* Keyframe animations for the glitch effect */
@-webkit-keyframes glitch-anim {
  0% { -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 33%, 0 33%); }
  5% { -webkit-clip-path: polygon(0 62%, 100% 62%, 100% 82%, 0 82%); }
  10% { -webkit-clip-path: polygon(0 42%, 100% 42%, 100% 55%, 0 55%); }
  /* ... more steps ... */
  100% { -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%); }
}
@keyframes glitch-anim {
  0% { clip-path: polygon(0 2%, 100% 2%, 100% 33%, 0 33%); }
  5% { clip-path: polygon(0 62%, 100% 62%, 100% 82%, 0 82%); }
  10% { clip-path: polygon(0 42%, 100% 42%, 100% 55%, 0 55%); }
  /* ... more steps ... */
  100% { clip-path: polygon(0 50%, 100% 50%, 100% 70%, 0 70%); }
}

@-webkit-keyframes glitch-anim2 {
  0% { -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%); }
  15% { -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); }
  /* ... more steps ... */
  100% { -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%); }
}
@keyframes glitch-anim2 {
  0% { clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%); }
  15% { clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); }
  /* ... more steps ... */
  100% { clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%); }
}

@-webkit-keyframes glitch-skew {
  0% { -webkit-transform: skew(1deg); }
  10% { -webkit-transform: skew(-1deg); }
  /* ... more steps ... */
  100% { -webkit-transform: skew(0deg); }
}
@keyframes glitch-skew {
  0% { transform: skew(1deg); }
  10% { transform: skew(-1deg); }
  /* ... more steps ... */
  100% { transform: skew(0deg); }
}

