* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #000000;
    --secondary-color: #c5590b;
    --accent-color: #FF6B00;
    --text-color: #ffffff;
}

body {
    background: linear-gradient(-45deg, #000000, #2c3e50, #1a1a1a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

/* Header with Logo */
header {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

nav {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 10%;
    width: 10%;
    filter: drop-shadow(0 0 10px var(--secondary-color));
    transition: transform 0.3s ease;
}

.logo-img :hover {
    transform: rotate(15deg);
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-name span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a :hover {
    color: var(--secondary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
}


/* Hero Section */
.hero-slider {
    height: calc(100vh - 84px);
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
    animation: float 0s ;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--secondary-color);
}

.cta-button {
   display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 45%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 55%);
    animation: hologramScan 5s linear infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--secondary-color);
}

/* About Section */
.about {
padding: 8rem 1rem;
background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
position: relative;
overflow: hidden;
}

.about-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-content {
position: relative;
padding: 3rem;
background: rgba(255,255,255,0.05);
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255,69,0,0.3);
transform-style: preserve-3d;
perspective: 1000px;
}

.about-content::before {
content: '';
position: absolute;
width: 200%;
height: 200%;
background: linear-gradient(45deg, 
    transparent 45%, 
    rgba(255,69,0,0.1) 50%, 
    transparent 55%);
animation: hologramScan 8s linear infinite;
z-index: -1;
}

.about-image-container {
position: relative;
perspective: 1000px;
}

.about-image {
width: 100%;
border-radius: 20px;
transform: rotateY(20deg);
box-shadow: -30px 30px 50px rgba(0,0,0,0.5);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-container:hover .about-image {
transform: rotateY(0deg);
box-shadow: 0 0 50px rgba(255,69,0,0.3);
}

.timeline {
position: absolute;
width: 4px;
height: 100%;
background: rgba(255,255,255,0.1);
left: -2rem;
top: 0;
}

.timeline::after {
content: '';
position: absolute;
width: 15px;
height: 15px;
background: var(--secondary-color);
border-radius: 50%;
left: -5.5px;
animation: timelinePulse 2s infinite;
}

@keyframes timelinePulse {
0% { box-shadow: 0 0 0 0 rgba(255,69,0,0.4); }
100% { box-shadow: 0 0 0 10px rgba(255,69,0,0); }
}

.milestone {
position: relative;
padding-left: 3rem;
margin-bottom: 4rem;
opacity: 0;
transform: translateX(-50px);
transition: all 0.5s ease;
}

.milestone.active {
opacity: 1;
transform: translateX(0);
}

.milestone h3 {
font-family: 'Orbitron', sans-serif;
color: var(--secondary-color);
margin-bottom: 1rem;
position: relative;
}

.milestone h3::before {
content: '';
position: absolute;
width: 10px;
height: 10px;
background: var(--secondary-color);
left: -2.8rem;
top: 50%;
transform: translateY(-50%);
border-radius: 50%;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 3rem;
}

.stat-card {
padding: 1.5rem;
background: rgba(0,0,0,0.3);
border-radius: 15px;
text-align: center;
transition: all 0.3s ease;
cursor: pointer;
}

.stat-card:hover {
transform: translateY(-5px);
background: rgba(255,69,0,0.1);
}

.stat-number {
font-size: 2.5rem;
font-weight: bold;
background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
nav {
    flex-wrap: wrap;
    height: screen;
}
.brand {
    flex: 1;
}
.hamburger {
    display: block;
    margin-left: auto;
}
.nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.nav-links.active {
    display: flex;
}
.company-name{
    display: none;
}
.logo-img{     
    height: 15%;
    width: 15%;
    image-resolution: inherit;
}
.about-content {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,69,0,0.3);
    width: 100%;
    max-width: 600px;
    }
.about-content h2{
    padding: 2px 0 3px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; /* Changed to flex for better control */
    flex-direction: column; /* Stack vertically on mobile */
    gap: 2rem; /* Reduced gap */
    align-items: center;
}

.about-image-container{
    position: relative;
    width: 100%;
    max-width: 500px; /* Limit image container width */
    margin: 0 auto; 
}
.about-image {
    transform: rotateY(0deg);
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: -20px 20px 30px rgba(0,0,0,0.5);

}
.stats-grid {
    grid-template-columns: 1fr; /* 2 columns */
    gap: 1rem;
    margin-top: 2rem;
}
    
.stat-card {
    padding: 1rem;
    margin: 10px 0 0 0;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer; 
}
.milestone {
position: relative;
margin: 2rem 0 2rem 0;
opacity: 0;
transform: translateX(-50px);
transition: all 0.5s ease;
}
.appointment {
    padding: 3rem 0.5rem;
}
.appointment-form {
    gap: 1rem;
    padding: 1.5rem;
}

input, select, textarea {
    padding: 0.7rem;
    font-size: 0.9rem; /* Prevent zooming on iOS */
}
button[type="submit"] {
    grid-column: span 1; /* Button spans full width on very small screens */
    padding: 0.7rem;
    font-size: 0.8rem;
    max-width: 300px; /* Limit button width on mobile */
    margin: 0 auto;   
}

h2 {
    font-size: 1.5rem; /* Smaller heading on mobile */
}
.form-group {
    display: grid;
    flex-direction: column;
    text-align: left;
    width: 100%;
}
}

/* Appointment Section */
.appointment {
    padding: 4rem 1rem;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(30,30,30,0.9));
}

.appointment-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.appointment-form select option {
background-color: #000000;
color: #ffffff;
padding: 10px;
}
.appointment-form {
     /* Single column for mobile */
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
    position: relative;
    max-width: 100%;
    width: 100%;
}

.appointment-form::before {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 45%, 
        rgba(255,69,0,0.1) 50%, 
        transparent 55%);
    animation: hologramScan 8s linear infinite;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%;
}

input, select, textarea {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255,69,0,0.3);
}

button[type="submit"] {
    grid-column: span 2;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
    max-width: none;
    margin: 0;
}

button[type="submit"]:hover {
    background: var(--accent-color);
    letter-spacing: 2px;
}

#system option {
    color: #000000;
}

/* Services Section */
.services {
    padding: 6rem 1rem;
    background: #0a0a0a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
}

.service-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.05);
    box-shadow: 0 25px 40px rgba(255,69,0,0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

service-card:hover i {
    transform: rotate(360deg);
}

/* Contact Section */
.contact {
padding: 6rem 1rem;
background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
position: relative;
overflow: hidden;
}

.contact-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
position: relative;
}

.contact-info {
position: relative;
padding: 2rem;
border-radius: 15px;
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,69,0,0.3);
transition: all 0.5s ease;
}

.contact-info:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(255,69,0,0.1);
}

.contact-details {
display: grid;
gap: 2rem;
}

.contact-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem;
border-radius: 10px;
background: rgba(0,0,0,0.3);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}

.contact-item::before {
content: '';
position: absolute;
width: 3px;
height: 0;
left: 0;
bottom: 0;
background: var(--secondary-color);
transition: height 0.3s ease;
}

.contact-item:hover::before {
height: 100%;
}

.contact-item:hover {
transform: translateX(10px);
}

.contact-item i {
font-size: 1.5rem;
color: var(--secondary-color);
transition: transform 0.3s ease;
}

.contact-item:hover i {
transform: scale(1.2);
}

.contact-form {
padding: 2rem;
background: rgba(255,255,255,0.05);
border-radius: 15px;
border: 1px solid rgba(255,69,0,0.3);
backdrop-filter: blur(10px);
}

.form-group {
position: relative;
margin-bottom: 2rem;
}

.form-input {
width: 100%;
padding: 1rem;
background: transparent;
border: 2px solid rgba(255,255,255,0.1);
border-radius: 8px;
color: white;
transition: all 0.3s ease;
}

.form-input:focus {
border-color: var(--secondary-color);
box-shadow: 0 0 20px rgba(255,69,0,0.2);
}

.form-label {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: rgba(255,255,255,0.6);
pointer-events: none;
transition: all 0.3s ease;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
top: -10px;
left: 0;
font-size: 0.8rem;
color: var(--secondary-color);
}

.social-links {
display: flex;
gap: 1.5rem;
margin-top: 2rem;
}

.social-link {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255,255,255,0.1);
transition: all 0.3s ease;
}

.social-link:hover {
background: var(--secondary-color);
transform: translateY(-5px);
}

.map-container {
margin-top: 2rem;
height: 300px;
border-radius: 15px;
overflow: hidden;
border: 2px solid rgba(255,69,0,0.3);
position: relative;
}

.map-container iframe {
width: 100%;
height: 100%;
filter: grayscale(100%) invert(100%);
transition: filter 0.3s ease;
}

.map-container:hover iframe {
filter: grayscale(0%) invert(0%);
}

@media (max-width: 768px) {
.contact-container {
    grid-template-columns: 1fr;
}
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 30px #25D366;
}

/* Particle Background */
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Mouse Trailer */
.mouse-trailer {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
    z-index: 9999;
}

 /* Responsive Design */
 @media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .appointment-form {
        grid-template-columns: 1fr;
    }

    button[type="submit"] {
        grid-column: span 1;
    }
}

@keyframes hologramScan {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(50%, 50%) rotate(45deg); }
}

 /* AI Chat Bot Styles */
 .chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 30px rgba(255,69,0,0.3);
    transform: translateY(150%);
    transition: all 0.3s ease;
    z-index: 1001;
}

.chat-container.active {
    transform: translateY(0);
}

.chat-header {
    padding: 1rem;
    background: rgba(255,69,0,0.1);
    border-radius: 15px 15px 0 0;
    cursor: pointer;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid rgba(255,69,0,0.2);
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--secondary-color);
    border-radius: 8px 0 0 8px;
    color: white;
}

.chat-input button {
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: var(--accent-color);
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    animation: messageAppear 0.3s ease;
}

.user-message {
    background: rgba(255,69,0,0.1);
    border: 1px solid var(--secondary-color);
    margin-left: 20%;
}

.bot-message {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 20%;
}

.typing-indicator {
    display: none;
    padding: 0.8rem;
    font-style: italic;
    color: var(--secondary-color);
}

.chat-bot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,69,0,0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-bot-button:hover {
    transform: scale(1.1) rotate(15deg);
}

@keyframes messageAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.subscription-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.subscription-box {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 50px rgba(255,69,0,0.2);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscription-box.active {
    transform: scale(1);
    opacity: 1;
}

.subscription-box .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.subscription-box .close-btn:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.subscription-content {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subscription-content::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 45%, 
        rgba(255,69,0,0.1) 50%, 
        transparent 55%);
    animation: hologramScan 8s linear infinite;
    z-index: -1;
}

.subscription-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.subscription-content p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

.subscription-form {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.subscription-form input {
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.subscription-form input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255,69,0,0.3);
}

.subscription-form button {
    padding: 1rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.subscription-form button:hover {
    transform: scale(1.05);
    letter-spacing: 2px;
}

.subscription-success {
    display: none;
    color: #00ff00;
    margin-top: 1rem;
    animation: successPulse 1.5s infinite;
}

@keyframes successPulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
