* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #00f0ff, #a0ff00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: #00f0ff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.logo-accent {
    color: #00f0ff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #00f0ff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #00f0ff;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,240,255,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    color: #00f0ff;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin-bottom: 2rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #00f0ff, #0088aa);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-outline {
    border: 2px solid #00f0ff;
    background: transparent;
    color: #00f0ff;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.btn-learn-more {
    display: inline-block;
    color: #a0ff00;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.btn-learn-more i {
    transition: transform 0.3s;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ========== STATS SECTION ========== */
.stats {
    padding: 4rem 0;
    background: #0f0f12;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00f0ff;
    font-family: 'Space Grotesk', monospace;
}

.stat-label {
    color: #b0b0b0;
    margin-top: 0.5rem;
}

/* ========== WELCOME & EXPERTISE ========== */
.welcome, .expertise, .what-we-do, .testimonials, .gallery, .blog-preview, .get-in-touch {
    padding: 5rem 0;
}

.welcome-grid {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.welcome-text {
    width: 50%;
}

.welcome-text h2 {
    font-size: 30px;   
}

.welcome-image {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.welcome-image img {
    width: 100%;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-card {
    width: calc(50% - 1rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.expertise-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.expertise-image-card {
    width: 100%;
    background: url(images/consulting-background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.expertise-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.expertise-icon {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.expertise-card .expertise-overlay h3 {
    font-size: 60px;
    margin: 0;
}

.expertise-card .expertise-overlay p {
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.expertise-card .expertise-overlay a {
    color: #a0ff00;
    text-decoration: none;
    font-size: 20px;
}

/* Services List */
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.services-showcase {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.service-chip {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.service-chip:hover {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.service-chip i {
    margin-right: 0.5rem;
    color: #00f0ff;
}

.text-center {
    text-align: center;
}

.mt-3, .mt-4 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.quote-icon {
    color: #00f0ff;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.client-info {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-info .client-avatar {
    width: 64px;
    border-radius: 50%;
}

.client-info strong {
    display: block;
    color: #a0ff00;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Blog Preview */
.blog-grid {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 2rem;
}

.blog-card {
    width: calc(400px - 1.3rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.blog-date {
    color: #00f0ff;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    margin-bottom: 0.75rem;
}

.blog-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.read-more {
    color: #a0ff00;
    text-decoration: none;
    font-weight: 500;
}

.blog-image img {
    width: 100%;
}

.blog-card-con {
    padding: 1.5rem;
}

/* Get In Touch */
.get-in-touch {
    background: linear-gradient(135deg, #0f0f12, #0a0a0a);
    text-align: center;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin: 1.5rem auto;
    font-size: 1.1rem;
}

.contact-email i {
    color: #00f0ff;
}

/* ========== ABOUT PAGE ========== */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a, #0f0f1a);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.about-image-placeholder {
    background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(160,255,0,0.05));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,240,255,0.2);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: #00f0ff;
    margin-bottom: 1rem;
}

.values-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card, .team-member {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.value-card i, .member-avatar i {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 1rem;
}

/* ========== SERVICES DETAILED ========== */
.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-detailed-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: 20px;
    padding: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #00f0ff;
    margin-bottom: 1rem;
}

.service-detailed-card h3 {
    margin-bottom: 1rem;
}

.service-detailed-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.service-detailed-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detailed-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detailed-card li::before {
    content: "✓";
    color: #a0ff00;
    position: absolute;
    left: 0;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0,240,255,0.05), transparent);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

/* ========== CONTACT PAGE ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-side {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: 20px;
    padding: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.info-item i {
    font-size: 1.5rem;
    color: #00f0ff;
}

.contact-form-side {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: 12px;
    color: white;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #00f0ff;
}

.form-feedback {
    margin-top: 1rem;
    text-align: center;
}

/* ========== FOOTER ========== */
.footer {
    background: #050505;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0,240,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00f0ff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00f0ff;
}

.footer-contact p {
    margin: 0.5rem 0;
    color: #b0b0b0;
}

.footer-contact i {
    width: 25px;
    color: #00f0ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #707070;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .stats-grid, .expertise-grid, .testimonials-grid, .gallery-grid, .blog-grid, .values-grid, .team-grid, .services-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a0a;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(0,240,255,0.2);
    }
    
    .nav-links.show {
        display: flex;
    }
    
     .expertise-grid, .testimonials-grid, .gallery-grid, .blog-grid, .values-grid, .team-grid, .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media(max-width:768px) {
    .welcome-grid {
        flex-direction: column;
    }
    .welcome-text,.welcome-image {
        width: 100%;
    }
    .container {
        padding: 0 16px;
    }
    .expertise-card {
       width: 100%;
       padding: 1.8rem 1rem;
    }
    .expertise-card .expertise-overlay h3 {
        font-size: 34px;
        line-height: 1.2;
    }
    .expertise-card .expertise-overlay p {
        font-size: 18px;
        margin: 1rem 0;
    }
    .services-showcase {
        border-radius: 15px;
    }
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    .contact-email {
        font-size: 15px;
    }
    .stats {
        padding: 2rem 0;
    }
    .stats-grid {
        gap: 1.2rem;
    }
    .stat-card {
        padding: 1rem;
    }
    .expertise,.testimonials,.get-in-touch {
        padding: 2rem 0;
    }
}

/* ========== ADDITIONAL CSS FOR ABOUT & SERVICES PAGES ========== */

/* About Page - Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f12, #0a0a0a);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 3rem;
    color: #00f0ff;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #c0c0c0;
}

/* About Page - Office Showcase */
.office-showcase {
    padding: 5rem 0;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.office-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s;
}

.office-image img:hover {
    transform: scale(1.02);
}

.office-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.office-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.office-stats div {
    text-align: center;
}

.office-stats strong {
    font-size: 1.8rem;
    color: #00f0ff;
    display: block;
}

/* Services Page - Hero Banner */
.services-hero-banner {
    padding: 2rem 0;
}

.services-hero-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    max-height: 400px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f12, #0a0a0a);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-points {
    margin-top: 2rem;
}

.why-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-point i {
    font-size: 1.5rem;
    color: #a0ff00;
    margin-top: 0.2rem;
}

.why-point h4 {
    margin-bottom: 0.25rem;
}

.why-point p {
    color: #b0b0b0;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s;
}

.why-image img:hover {
    transform: scale(1.02);
}

/* Pricing Section
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.pricing-card.popular {
    border-color: #00f0ff;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f0ff, #0088aa);
    color: #0a0a0a;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f0ff;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #c0c0c0;
}

.pricing-card li::before {
    content: "✓";
    color: #a0ff00;
    margin-right: 0.5rem;
} */

/* Utility Classes */
.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* About Page Image */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent);
    pointer-events: none;
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .mission-grid,
    .office-grid,
    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .office-stats {
        justify-content: center;
    }
    
    .why-point {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .mission-card {
        padding: 1.5rem;
    }
    
    .mission-card h3 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .office-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .office-stats div {
        width: 45%;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    .page-header {
        padding: 7rem 0 4rem;
    }
    .page-header h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    .info-item-para {
        font-size: 15px;
    }
    .contact-info-side,
    .contact-form-side {
        padding: 1.5rem 1rem;
    }
}