:root {
    --primary: #0047AB;   /* Royal Blue */
    --accent:  #00C2CB;   /* Sky Cyan  */
    --bg:      #F9FAFB;   /* Light Gray */
    --text:    #1A1A1A;   /* Almost Black */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #1f1f1f; /* Dark grey */
    color: #00ffff;           /* Cyan text */
    line-height: 1.6;
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #00c2cb;
    color: #1f1f1f;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Form improvements */
.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #00c2cb;
    border-radius: 8px;
    background: rgba(0, 194, 203, 0.1);
    color: #00ffff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccffff;
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7cffff;
    box-shadow: 0 0 0 2px rgba(124, 255, 255, 0.2);
}

/* Form status messages */
.form-status {
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.form-status.success {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.05));
    border: 2px solid #00ff00;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.form-status.success::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    animation: bounce 0.6s ease-in-out;
}

.form-status.error {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(200, 0, 0, 0.05));
    border: 2px solid #ff0000;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.form-status.error::after {
    content: '⚠';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    animation: shake 0.6s ease-in-out;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) scale(1);
    }
    40% {
        transform: translateY(-50%) scale(1.2);
    }
    60% {
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateY(-50%) translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateY(-50%) translateX(5px);
    }
}

/* Button loading state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.btn-primary:disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-loading {
    display: none;
}

.btn-primary:disabled .btn-text {
    display: none;
}

.btn-primary:disabled .btn-loading {
    display: inline;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; color: var(--primary); }
p {
  color: #ccffff; /* Softer cyan for body text */
}

h2, h3 {
  color: #00ffff;
}

header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* Navbar container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
nav.scrolled {
    box-shadow: 0 2px 10px rgba(34, 36, 36, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3); /* translucent dark */
}


/* No background */
header {
    background: transparent;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.logo a:hover {
    text-shadow: 0 0 5px #00ffff;
    filter: drop-shadow(0 0 8px #00ffff);
}

.logo-icon {
    background: #000;             /* Just behind the logo image */
    border-radius: 50%;           /* Makes it circular */
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: scale(1.05);
}

#logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;           /* Optional: gives rounded edge */
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
}

/* Nav Links */
.nav-links a {
    position: relative;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    color: #00ffff;
    transition: color 0.3s ease;
    color: #00ffff;
    text-shadow: 0 0 2px #00ffff;
}



.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background: #00ffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}



/* Hero */
.hero {
    position: relative;
height: 100vh;
background: #1f1f1f; /* Dark grey */
color: #00ffff;      /* Cyan text */
display: flex;
justify-content: center;
align-items: center;
text-align: center;
overflow: hidden;
flex-direction: column;
padding: 0 1rem;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.27);
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;              /* Extra thick */
    color: #aefcff;                /* Light cyan */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* Optional: adds soft contrast */
}


.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccfaff;                /* Lighter text */
}


.btn-primary {
    background-color: #00c2cb;
    color: #1f1f1f;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #7cffff;
}


/* Sections */
section {
    padding: 4rem 0; 
}
.section-title { 
    text-align: center; 
    margin-bottom: 2.5rem; 
    margin-top: 2.5rem;
}

/* About */
.about p {
    max-width: 800px; 
    margin: auto;
    font-size: 1.05rem; 
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background-color: #262626;
    color: #aefcff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

.service-card h3 { margin-bottom: 0.75rem; }

/* Tech Stack Section - Clean Design */
.tech-stack {
    padding: 6rem 0;
    background: #1f1f1f;
    text-align: center;
}

.tech-stack .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.tech-stack .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.tech-carouse {
    margin-top: 3rem;
    padding: 1rem 0;
}

.tech-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: #00c2cb;
    box-shadow: 0 8px 25px rgba(0, 194, 203, 0.2);
    background: linear-gradient(145deg, #2f2f2f, #242424);
}

.tech-card img,
.tech-card .png {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.tech-card:hover img,
.tech-card:hover .png {
    filter: brightness(1.1);
    transform: scale(1.1);
}

.tech-card p {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.tech-card:hover p {
    color: #00c2cb;
}

/* Swiper Customization */
.swiper {
    padding: 1rem 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    transition: all 0.3s ease;
}

.swiper-slide-active .tech-card {
    transform: scale(1.02);
    border-color: #00c2cb;
}

/* Tech Stack Title Enhancement */
.tech-stack .section-title {
    position: relative;
    display: inline-block;
}

.tech-stack .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00c2cb, #7cffff);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-card {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
    
    .tech-card img,
    .tech-card .png {
        width: 60px;
        height: 60px;
    }
    
    .tech-card p {
        font-size: 0.9rem;
    }
}

/*Stats*/
.stats {
  background-color: #0d0d0d;
  color: #aefcff;
  padding: 4rem 1rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0,255,255,0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00ffff;
}

.stat-card p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #ccffff;
}


/*Testimonals*/
.testimonials {
  background-color: #121212;
  color: #aefcff;
  padding: 4rem 1rem;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
  background-color: #1f1f1f;
  border-left: 4px solid #00ffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,255,255,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0,255,255,0.2);
}

.testimonial-card p {
  font-style: italic;
  color: #ccffff;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #00ffff;
}

/* Why US */
.why-choose-us {
  background: #121212;
  color: #00ffff;
  padding: 4rem 1rem;
  text-align: center;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.choose-card {
  background-color: #1f1f1f;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

.choose-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.choose-card h3 {
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #aefcff;
}

.choose-card p {
  color: #ccffff;
  font-size: 0.95rem;
}

.cta-banner {
  background: linear-gradient(135deg, #093032, #03152d);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cta-banner .btn-primary {
  background: linear-gradient(135deg, #0b2f5f, #094b4e);
  color: #00ab91;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}


/* Contact */
.contact {
    background-color: #1f1f1f;
    color: #00ffff;
    padding: 4rem 1rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: #262626;
    border: 1px solid #333;
    padding: 1rem;
    border-radius: 6px;
    color: #aefcff;
    font-size: 1rem;
    resize: none;
  transition: border 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #66ffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid #00ffff;
}

.contact .btn-primary {
    background: #00c2cb;
    color: #1f1f1f;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact .btn-primary:hover {
    background: #00e6e6;
}


/* Footer */
footer {
    background-color: #000000;   /* Slightly darker than body */
    color: #aefcff;              /* Soft cyan text */
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;  /* Subtle line for separation */
}

footer a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: #aefcff;
}


/* Responsive */
.menu-toggle {
    display:none; 
    flex-direction:column; 
    gap:5px; cursor:pointer;
}
.menu-toggle span {
    width:28px; 
    height:2px; 
    background:var(--primary); 
    transition:transform .3s, opacity .3s;
}

/* open animation */
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}  
.menu-toggle.open span:nth-child(2){opacity:0;}  
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}  

@media(max-width:768px){
    .menu-toggle{
        display:flex;
    }
    .nav-links{
        position:fixed;
        top:-100vh;        /* hidden above the viewport */
        left:0;            /* anchor to the very left edge */
        width:100%;        /* or 100vw */ 
        gap:1.5rem;
        background:rgba(0,0,0,.85);
        backdrop-filter:blur(12px);
        padding:2rem 1.5rem;
        height:50vh;       /* half the viewport height */
        transition:top .35s ease;
        display: flex;
        flex-direction: column;   /* this turns row into column */
        align-items: center;      /* centers the links horizontally */
        justify-content: center;
        gap: 1.5rem;
    }
    .nav-links a {
        margin-left: 0px;
    }
    
    .nav-links.open{
        top:80px;          /* slides down just below the navbar */
    }
    nav.open {
        box-shadow: 0 2px 10px rgba(34, 36, 36, 0.2);
        transition: background 0.3s ease, box-shadow 0.3s ease;
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.948); /* translucent dark */
    }
    
    
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    border: 2px solid #00c2cb;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideInModal 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 194, 203, 0.3);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c2cb, #7cffff, #00c2cb);
    animation: shimmer 2s infinite;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.success-icon svg {
    width: 30px;
    height: 30px;
    color: #1f1f1f;
    animation: checkmarkDraw 0.8s ease-out 0.3s both;
}

.modal-close {
    background: none;
    border: none;
    color: #00c2cb;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 194, 203, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.modal-close:hover::before {
    transform: scale(1);
}

.modal-close:hover {
    color: #7cffff;
    transform: scale(1.1);
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
    text-align: center;
}

.modal-body h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.modal-body p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ccffff;
}

.modal-body .subtitle {
    font-size: 0.9rem;
    color: #99ffff;
    opacity: 0.8;
    font-style: italic;
}

.modal-footer {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

.modal-btn {
    background: linear-gradient(135deg, #00c2cb, #7cffff);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f1f1f;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modal-btn:hover::before {
    left: 100%;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 194, 203, 0.4);
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkDraw {
    0% {
        stroke-dasharray: 0 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100 100;
        stroke-dashoffset: 0;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .modal-footer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.5rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
    }
    
    .success-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #99ffff;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 194, 203, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 194, 203, 0.2);
    border-color: #00c2cb;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #ccffff;
    font-size: 0.9rem;
}

/* Process Section */
.process {
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 194, 203, 0.2);
    border-color: #00c2cb;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00c2cb, #7cffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f1f1f;
    margin: 0 auto 1rem auto;
    box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.process-step h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #ccffff;
    line-height: 1.6;
}

/* Enhanced Services */
.service-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c2cb, #7cffff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 194, 203, 0.2);
    border-color: #00c2cb;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.service-features li {
    color: #ccffff;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c2cb;
    font-weight: bold;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 194, 203, 0.2);
    border-color: #00c2cb;
}

.quote-icon {
    font-size: 4rem;
    color: #00c2cb;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-card p {
    color: #ccffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-author cite {
    color: #00ffff;
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: #99ffff;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 194, 203, 0.2);
    border-color: #00c2cb;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c2cb, #7cffff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 194, 203, 0.3);
}

.avatar-placeholder {
    font-size: 3rem;
}

.team-member h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #00c2cb;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #ccffff;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 194, 203, 0.2);
    border-color: #00c2cb;
}

.faq-item h3 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ccffff;
    line-height: 1.6;
}

/* Enhanced CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 194, 203, 0.2);
    border-bottom: 1px solid rgba(0, 194, 203, 0.2);
}

.cta-banner h2 {
    color: #00ffff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-banner p {
    color: #ccffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-features,
    .process-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial-card,
    .team-member,
    .faq-item {
        padding: 1.5rem;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .avatar-placeholder {
        font-size: 2.5rem;
    }
}
