*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#f5f7fb;
color:#333;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
}



.logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.logo{
font-size:20px;
font-weight:600;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

.menu{
display:none;
font-size:24px;
cursor:pointer;
}


.hero{
text-align:center;
padding:120px 20px;
background:linear-gradient(135deg,#4e73df,#8e44ec);
color:white;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
opacity:0.9;
}


.strength{
padding:80px 10%;
text-align:center;
}

.cards{
display:flex;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
justify-content:center;
}

.card{
background:white;
padding:30px;
border-radius:12px;
width:300px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}


.services{
padding:80px 10%;
}

.service{
background:white;
padding:25px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}


.footer{
background:#0d1b2a;
color:white;
padding:60px 10% 30px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;
}

.footer-col{
width:300px;
}

.footer-col h3{
margin-bottom:15px;
}

.footer-col a{
display:block;
color:#f1f1f1;
text-decoration:none;
margin-bottom:8px;
}

.copyright{
text-align:center;
margin-top:40px;
opacity:0.7;
}


/* MOBILE */

@media(max-width:768px){

nav{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:70px;
right:20px;
padding:20px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

nav a{
margin:10px 0;
}

.menu{
display:block;
}

.cards{
flex-direction:column;
align-items:center;
}

.hero h1{
font-size:34px;
}

}

/* CAREER HERO */

.career-hero{

text-align:center;
padding:120px 20px;

background:linear-gradient(135deg,#4e73df,#8e44ec);

color:white;

}

.career-hero h1{

font-size:48px;
margin-bottom:10px;

}

/* WHY WORK */

.why{

padding:80px 10%;
text-align:center;

}

.why-cards{

display:flex;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
justify-content:center;

}

.why-card{

background:white;
padding:30px;
border-radius:12px;
width:280px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

/* JOBS */

.jobs{

padding:60px 10%;
text-align:center;

}

.job-cards{

display:flex;
gap:30px;
margin-top:30px;
flex-wrap:wrap;
justify-content:center;

}

.job-card{

background:white;
padding:25px;
border-radius:10px;
width:280px;

box-shadow:0 8px 20px rgba(0,0,0,0.08);

}

/* APPLY FORM */

.apply{

padding:80px 10%;
text-align:center;

}

.apply-form{

max-width:450px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;

}

.apply-form input,
.apply-form select,
.apply-form textarea{

padding:12px;
border-radius:8px;
border:1px solid #ddd;

}

.apply-form button{

padding:14px;
border:none;
border-radius:10px;

background:linear-gradient(135deg,#4e73df,#8e44ec);

color:white;
font-size:16px;

cursor:pointer;

}


/* CONTACT SECTION */

.contact-section {
padding: 60px 10%;
background: #f9f9f9;
}

.contact-container {
display: flex;
gap: 40px;
flex-wrap: wrap;
}

.contact-info {
flex: 1;
min-width: 280px;
}

.contact-info h2 {
margin-bottom: 15px;
}

.info-box {
margin: 15px 0;
}

.contact-form {
flex: 1;
min-width: 280px;
background: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-family: 'Poppins', sans-serif;
}

.contact-form button {
width: 100%;
padding: 12px;
border: none;
background: #000;
color: #fff;
border-radius: 5px;
cursor: pointer;
font-weight: 500;
}

.contact-form button:hover {
background: #444;
}

/* MAP */

.map {
margin-top: 40px;
}


/* ROBOT BUTTON */

.robot-chat {
position: fixed;
bottom: 20px;
right: 20px;
width: 65px;
height: 65px;
background: linear-gradient(135deg, #000, #444);
color: #fff;
font-size: 28px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 8px 25px rgba(0,0,0,0.4);
animation: float 2s infinite ease-in-out;
z-index: 999;
}

/* FLOAT ANIMATION */

@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
100% { transform: translateY(0px); }
}

/* CHAT BOX */

.chat-box {
position: fixed;
bottom: 100px;
right: 20px;
width: 320px;
background: #fff;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
display: none;
flex-direction: column;
overflow: hidden;
z-index: 999;
}

/* HEADER */

.chat-header {
background: linear-gradient(135deg, #000, #333);
color: #fff;
padding: 12px;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 500;
}

/* BODY */

.chat-body {
height: 260px;
padding: 12px;
overflow-y: auto;
font-size: 14px;
background: #f9f9f9;
}

.bot {
background: #eaeaea;
padding: 8px 10px;
border-radius: 10px;
margin-bottom: 8px;
max-width: 80%;
}

.user {
background: #000;
color: #fff;
padding: 8px 10px;
border-radius: 10px;
margin-bottom: 8px;
text-align: right;
margin-left: auto;
max-width: 80%;
}

/* FOOTER */

.chat-footer {
display: flex;
border-top: 1px solid #ddd;
}

.chat-footer input {
flex: 1;
padding: 10px;
border: none;
outline: none;
}

.chat-footer button {
background: #000;
color: #fff;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 16px;
}


/* ================= AI PREMIUM ANIMATIONS ================= */

/* SMOOTH SCROLL */
html {
scroll-behavior: smooth;
}

/* ====== HERO AI GLOW ====== */
.hero h1, .career-hero h1 {
animation: aiGlow 2s ease-in-out infinite alternate;
}

@keyframes aiGlow {
0% {
text-shadow: 0 0 10px #00c3ff, 0 0 20px #00c3ff;
}
100% {
text-shadow: 0 0 20px #8e44ec, 0 0 40px #4e73df;
}
}

/* ====== GRADIENT ANIMATION BACKGROUND ====== */
.hero, .career-hero {
background: linear-gradient(-45deg, #4e73df, #8e44ec, #00c3ff, #6a11cb);
background-size: 400% 400%;
animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* ====== FLOATING CARDS ====== */
.card, .service, .job-card, .why-card {
transition: all 0.4s ease;
}

.card:hover, .service:hover, .job-card:hover, .why-card:hover {
transform: translateY(-12px) scale(1.04);
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ====== GLASSMORPHISM AI EFFECT ====== */
.card, .service, .job-card, .why-card, .contact-form {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.2);
}

/* ====== BUTTON HOVER EFFECT ====== */
button {
transition: 0.3s;
}

button:hover {
transform: scale(1.08);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ====== NAVBAR ANIMATION ====== */
header {
transition: 0.3s;
}

header.sticky {
background: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ====== FADE IN SCROLL EFFECT ====== */
.fade-in {
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease;
}

.fade-in.show {
opacity: 1;
transform: translateY(0);
}

/* ====== ROBOT CHAT GLOW ====== */
.robot-chat {
animation: float 2s infinite ease-in-out, pulseGlow 2s infinite;
}

@keyframes pulseGlow {
0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.5); }
70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* ====== CHAT BOX SMOOTH OPEN ====== */
.chat-box {
animation: chatOpen 0.3s ease;
}

@keyframes chatOpen {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

/* ====== TEXT HOVER EFFECT ====== */
nav a {
position: relative;
}

nav a::after {
content: "";
position: absolute;
width: 0%;
height: 2px;
bottom: -5px;
left: 0;
background: #8e44ec;
transition: 0.3s;
}

nav a:hover::after {
width: 100%;
}

/* ====== SECTION TITLE ANIMATION ====== */
h2 {
position: relative;
display: inline-block;
}

h2::after {
content: "";
display: block;
width: 0%;
height: 3px;
background: linear-gradient(90deg,#4e73df,#8e44ec);
margin-top: 5px;
transition: 0.5s;
}

h2:hover::after {
width: 100%;
}

/* ====== SCROLLBAR STYLE ====== */
::-webkit-scrollbar {
width: 6px;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(#4e73df,#8e44ec);
border-radius: 10px;
}

/* ====== MAP HOVER ZOOM ====== */
.map iframe {
transition: 0.4s;
}

.map iframe:hover {
transform: scale(1.02);
}

/* ====== INPUT FOCUS EFFECT ====== */
input:focus, textarea:focus {
outline: none;
border: 1px solid #8e44ec;
box-shadow: 0 0 8px rgba(142,68,236,0.3);
}

/* ====== APPLY BUTTON GLOW ====== */
.apply-form button {
animation: btnGlow 2s infinite alternate;
}

@keyframes btnGlow {
0% { box-shadow: 0 0 5px #4e73df; }
100% { box-shadow: 0 0 20px #8e44ec; }
}

/* ====== EXTRA AI PARTICLE FEEL (LIGHT EFFECT) ====== */
body::before {
content: "";
position: fixed;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(142,68,236,0.05) 1px, transparent 1px);
background-size: 40px 40px;
z-index: -1;
}

/* LOADER */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid #00ffcc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


/* POPUP */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
}

.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.popup-content h2 {
  margin-bottom: 10px;
}

.popup-content button {
  margin-top: 10px;
  padding: 8px 20px;
  border: none;
  background: #00c896;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}


body {
  font-family: Arial;
  background: #f2f2f2;
}

.box {
  width: 90%;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

button {
  background: green;
  color: white;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th {
  background: #eee;
  padding: 10px;
}

td {
  padding: 10px;
  border-top: 1px solid #ddd;
}

.edit {
  background: blue;
  color: white;
  padding: 5px;
  border: none;
}

.delete {
  background: red;
  color: white;
  padding: 5px;
  border: none;
}


.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tab-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  background: #234064;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.tab-btn:hover {
  background: #dcdcdc;
  color: #333;
}

/* ACTIVE BUTTON */
.tab-btn.active {
  background: linear-gradient(45deg, #3a7bd5, #6a11cb);
  color: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}


