/* 
   NiyoNext - Custom CSS
   Primary Blue: #0B4DCC
   Orange Accent: #FF7A00
   White: #FFFFFF
   Light Gray: #F5F5F5
*/

:root {
    --primary-color: #0A2540;
    --primary-light: #183A5E;
    --primary-dark: #051525;
    --accent-color: #F37021;
    --accent-hover: #D95A10;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(10, 37, 64, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { 
    background: linear-gradient(135deg, #F8FAFC 0%, #e2e8f0 100%); 
}

.sub-heading {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-dark);
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(11, 77, 204, 0.3);
}

.btn-header:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 77, 204, 0.5);
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.1);
    z-index: 1000;
    transition: var(--transition);
    padding: 10px 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    position: relative;
    font-size: 32px;
    color: var(--primary-color);
}

.trend-icon {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 20px;
    color: var(--accent-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 300;
    color: var(--primary-dark);
}

.logo-sub {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
    margin-top: -2px;
    gap: 5px;
}

.logo-sub .line {
    width: 20px;
    height: 1px;
    background-color: #ccc;
    display: inline-block;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(5, 21, 37, 0.98) 100%), url('../assets/images/hero_bg.png') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.15) 0%, rgba(243, 112, 33, 0) 70%);
    filter: blur(50px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(11, 77, 204, 0.2) 0%, rgba(11, 77, 204, 0) 70%);
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1.2;
    z-index: 1;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 400;
}

.hero-badge-top i {
    color: var(--accent-color);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), #FFB700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-stars {
    color: #FFC107;
    font-size: 14px;
}

.hero-trust p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

.hero-image {
    flex: 1;
    z-index: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: var(--primary-dark);
    z-index: 2;
    animation: float-slow 4s ease-in-out infinite;
}

.fe-icon {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.fe-text {
    display: flex;
    flex-direction: column;
}

.fe-text span {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.fe-text small {
    font-size: 12px;
    opacity: 0.7;
}

.element-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.element-3 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

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

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-10px) translateX(5px); }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .element-1, .element-2, .element-3 {
        display: none;
    }
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
    100% { top: 8px; opacity: 1; }
}

/* Partners */
.partners {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.logo-item {
    font-size: 24px;
    font-weight: 300;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    filter: grayscale(100%);
}

.logo-item:hover {
    color: var(--primary-color);
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.rounded-img {
    border-radius: 24px;
}

.shadow-lg {
    box-shadow: var(--shadow);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(24, 58, 94, 0.8), rgba(10, 37, 64, 0.9));
    transition: var(--transition);
    z-index: -1;
    border-radius: 24px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

/* Results Section */
.results {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    position: relative;
}

.results .section-header h2 {
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    font-weight: 400;
}

/* Testimonials */
.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 36px;
    color: #051A3B;
    margin: 0 20px;
}

.testimonial-header::before,
.testimonial-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #ddd;
    max-width: 200px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-cover {
    width: 100%;
    height: 180px;
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 0 25px 25px 25px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -35px;
    margin-bottom: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-meta .rating {
    font-size: 14px;
    margin-bottom: 5px;
}

.review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    font-style: italic;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-line {
    height: 1px;
    background-color: #ddd;
    width: 60px;
}

.card-footer .read-more {
    font-weight: 300;
    font-size: 14px;
    color: #051A3B;
}

.card-footer .read-more:hover {
    color: var(--primary-color);
}

/* Consultation Form */
.consultation-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.form-wrapper {
    flex: 1.5;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    padding: 40px;
    border-radius: 24px;
}

.contact-info {
    flex: 1;
}

/* Modern Contact Form Styles */
.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.modern-form .input-row {
    display: flex;
    gap: 20px;
}

.modern-form .input-row .form-group {
    flex: 1;
}

.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.modern-input {
    width: 100%;
    padding: 20px 20px 10px 45px;
    border: 2px solid gray;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    color: var(--text-color);
}

.modern-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.1);
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

textarea.modern-input {
    resize: vertical;
    padding-top: 28px;
    min-height: 120px;
}

.floating-group textarea + .floating-label {
    top: 25px;
}

.modern-input:focus + .floating-label,
.modern-input:not(:placeholder-shown) + .floating-label {
    top: 12px;
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 400;
}

.modern-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 15px;
    transition: all 0.4s ease;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.6);
}

.modern-submit-btn i {
    transition: transform 0.3s ease;
}

.modern-submit-btn:hover i {
    transform: translateX(5px) translateY(-5px) scale(1.1);
}

@media (max-width: 768px) {
    .modern-form .input-row {
        flex-direction: column;
        gap: 0;
    }
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: #051A3B;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 28px;
}

.footer-about span {
    color: var(--accent-color);
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(10, 37, 64, 0.05);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.1);
}

.project-img {
    width: 100%;
    height: 200px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(10, 37, 64, 0.05);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.1);
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.team-info span {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 37, 64, 0.05);
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Bottom Navigation */
.bottom-nav {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-container, .about-container, .consultation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero-image, .about-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .about-content {
        text-align: center;
    }

    .contact-info {
        text-align: center;
        margin-top: 40px;
        width: 100%;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about, .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-about p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .header {
        border-radius: 0;
        width: 100%;
        top: 0;
        padding: 15px 0;
        border: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-container {
        justify-content: space-between;
        padding: 0 20px;
    }

    .header-btn {
        display: block !important;
    }

    .header-btn .btn-header {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
        background: transparent;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1002;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto; /* override desktop/previous styles */
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 20px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        text-align: center;
        align-items: center;
    }

    .nav-menu ul li a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }

    .stats-grid {
        flex-direction: column;
    }

    /* Swipeable Grids */
    .services-grid, .project-grid, .team-grid, .testimonial-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .services-grid::-webkit-scrollbar, .project-grid::-webkit-scrollbar, .team-grid::-webkit-scrollbar, .testimonial-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card, .project-card, .team-card, .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    /* Bottom Navigation App Style */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        padding: 10px 0 15px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--text-light);
        font-size: 11px;
        font-weight: 400;
        padding: 5px;
    }
    
    .bottom-nav .nav-item i {
        font-size: 20px;
        margin-bottom: 4px;
        transition: var(--transition);
    }
    
    .bottom-nav .nav-item.active, .bottom-nav .nav-item:hover {
        color: var(--primary-color);
    }
    
    .bottom-nav .nav-item.active i {
        transform: translateY(-3px);
        color: var(--accent-color);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
        font-size: 25px;
    }
}
