/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* New Color Variables */
:root {
    --primary-color: #00b09b;
    --secondary-color: #96c93d;
    --gradient-primary: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    --gradient-secondary: linear-gradient(135deg, #96c93d 0%, #00b09b 100%);
    --dark-green: #008170;
    --light-green: #a8d854;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 176, 155, 0.4);
}

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

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.text-center { text-align: center; }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-top {
    background: var(--primary-color);
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info span {
    color: white;
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.header-cta {
    color: white;
    font-size: 14px;
}

.navbar {
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-text span {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 176, 155, 0.1) 0%, rgba(150, 201, 61, 0.1) 100%);
}

/* Decorative Elements */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="arrow" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M5 5L15 10L5 15" stroke="%2300b09b" stroke-width="1" fill="none" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23arrow)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%2396c93d" opacity="0.4"/><circle cx="20" cy="20" r="1.5" fill="%2300b09b" opacity="0.3"/><circle cx="80" cy="30" r="1" fill="%2396c93d" opacity="0.5"/><circle cx="30" cy="80" r="1.5" fill="%2300b09b" opacity="0.3"/><circle cx="70" cy="70" r="1" fill="%2396c93d" opacity="0.4"/></svg>') repeat;
    animation: float 4s ease-in-out infinite reverse;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 70%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 10%;
    animation: float 5s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a202c;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-person {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    animation: heroMove 8s ease-in-out infinite;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: cardFloat 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: -20px;
    animation-delay: 2s;
}

.card i {
    color: var(--primary-color);
    font-size: 20px;
}

.card span {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Enhanced Floating Webdev Icons */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    color: #fff;
    z-index: 2;
    opacity: 0.98;
    box-shadow: 0 6px 24px 0 rgba(0,0,0,0.13), 0 1.5px 6px 0 rgba(0,0,0,0.10);
    border: 3px solid #fff;
    animation: floatIcon 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.floating-icon i {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.floating-icon-code {
    top: 8%;
    left: -60px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 60%, #06b6d4 100%);
    border-radius: 50%;
    box-shadow: 0 0 16px 0 #3b82f6aa;
    animation-delay: 0s;
}
.floating-icon-gear {
    bottom: 10%;
    left: -50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 60%, #fbbf24 100%);
    border-radius: 18px;
    box-shadow: 0 0 16px 0 #f59e0baa;
    animation-delay: 1.2s;
}
.floating-icon-cloud {
    top: 16%;
    right: -60px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #10b981 60%, #22d3ee 100%);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    box-shadow: 0 0 16px 0 #10b981aa;
    animation-delay: 2.2s;
}
.floating-icon-cursor {
    bottom: 8%;
    right: -50px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #6366f1 60%, #a21caf 100%);
    border-radius: 20px;
    box-shadow: 0 0 16px 0 #6366f1aa;
    animation-delay: 3.2s;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    20% { transform: translateY(-18px) scale(1.08) rotate(-4deg); }
    50% { transform: translateY(-8px) scale(1.04) rotate(3deg); }
    80% { transform: translateY(8px) scale(0.98) rotate(-2deg); }
}
.floating-icon:hover {
    transform: scale(1.13) rotate(-6deg);
    box-shadow: 0 0 32px 0 #00b09b55, 0 6px 24px 0 rgba(0,0,0,0.13);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #1a202c;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.feature-item h4 {
    margin-bottom: 8px;
    color: #1a202c;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 14px;
}

/* About Page Styles */
.about-detail-section {
    padding: 100px 0;
    background: white;
}

.about-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-detail-image {
    position: relative;
}

.about-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

.company-values {
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.value-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.value-item h4 {
    margin-bottom: 8px;
    color: #1a202c;
}

.value-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8fafc;
}

.member-social {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #5a67d8;
    transform: scale(1.1);
}

.member-info h3 {
    margin-bottom: 5px;
    color: #1a202c;
}

.member-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-info span {
    color: #666;
    font-size: 14px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a22 100%);
    color: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-vision-item {
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
}

.mission-vision-item h3 {
    margin-bottom: 20px;
    color: white;
}

.mission-vision-item p {
    color: #a0aec0;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Blog Styles */
.blog-section {
    padding: 100px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content h2 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.post-content h2 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.newsletter-content h2 {
    margin-bottom: 15px;
    color: #1a202c;
}

.newsletter-content p {
    margin-bottom: 30px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: white;
}

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

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.contact-info-card h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.form-text h2 {
    margin-bottom: 20px;
    color: #1a202c;
}

.form-text p {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.contact-features .feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-features .feature i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 5px;
}

.contact-features .feature h4 {
    margin-bottom: 5px;
    color: #1a202c;
}

.contact-features .feature p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    margin-bottom: 10px;
    color: #1a202c;
}

.form-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a202c;
    font-size: 14px;
}

.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: 0;
    background: white;
}

.map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    z-index: 2;
}

.map-info h3 {
    margin-bottom: 15px;
    color: #1a202c;
}

.map-info p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.office-hours h4 {
    margin-bottom: 10px;
    color: #1a202c;
    font-size: 16px;
}

.office-hours ul {
    list-style: none;
    margin-bottom: 20px;
}

.office-hours li {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="25" height="25"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-section .section-header h2 {
    color: white;
    margin-bottom: 15px;
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    color: #1a202c;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.service-arrow {
    margin-top: 20px;
    color: var(--secondary-color);
    font-size: 20px;
    position: relative;
    z-index: 2;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="%2300b09b" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    animation: float 8s ease-in-out infinite;
}

.process-section .section-header h2 {
    color: #1a202c;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 0.05;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 176, 155, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #1a202c;
    position: relative;
    z-index: 2;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20 L40 30 L20 40 M60 20 L80 30 L60 40" stroke="%2396c93d" stroke-width="2" fill="none" opacity="0.3"/></svg>') repeat;
    animation: float 7s ease-in-out infinite reverse;
}

.testimonials-section .section-header h2 {
    color: #1a202c;
}

.testimonial-slider {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  min-height: 340px;
}

.testimonial-item {
  min-width: 100%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.testimonial-item.fade-in-up {
  animation: none !important;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.testimonial-arrow {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #00b09b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.testimonial-arrow:hover {
  background: #00b09b;
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dots .nav-dot.active {
  background: #00b09b;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30 30 Q50 10 70 30 Q90 50 70 70 Q50 90 30 70 Q10 50 30 30" fill="none" stroke="%2396c93d" stroke-width="1" opacity="0.2"/></svg>') no-repeat center;
    animation: rotate 20s linear infinite;
}

.faq-section .section-header h2 {
    color: #1a202c;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item {
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 176, 155, 0.1);
    border-left-color: var(--primary-color);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(0, 176, 155, 0.05) 0%, rgba(150, 201, 61, 0.05) 100%);
    border-left-color: var(--primary-color);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #1a202c;
    font-size: 1.2rem;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item p {
    font-size: 14px;
    line-height: 1.6;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" patternUnits="userSpaceOnUse" width="30" height="30"><circle cx="15" cy="15" r="1" fill="white" opacity="0.1"/><circle cx="5" cy="5" r="0.5" fill="white" opacity="0.05"/><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>') repeat;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: white;
}

.contact-info p {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: #1a202c;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 176, 155, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
}

.footer-content {
    padding: 80px 0 40px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    margin-bottom: 20px;
    color: #a0aec0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-col .contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form .input-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #2d3748;
    border-radius: 25px;
    background: #2d3748;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form button {
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--dark-green);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #2d3748;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #a0aec0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-inner.png') center/cover no-repeat;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 10px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail Section */
.services-detail-section {
    padding: 100px 0;
    background: white;
}

.services-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-detail-text h2 {
    margin-bottom: 20px;
    color: #1a202c;
    font-size: 2.2rem;
}

.services-detail-text p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.member {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.member:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 176, 155, 0.1);
}

.member img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.member-info h4 {
    margin-bottom: 5px;
    color: #1a202c;
    font-size: 1.1rem;
}

.member-info p {
    margin: 0;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.services-detail-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-grid img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.img-1 {
    grid-column: span 2;
    height: 250px;
    object-fit: cover;
}

.img-2, .img-3 {
    height: 180px;
    object-fit: cover;
}

/* Detailed Services Section */
.detailed-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.detailed-services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: url('../images/banner-inner.png') center/contain no-repeat;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.detailed-services-section .section-header {
    margin-bottom: 60px;
}

.detailed-services-section .section-header h2 {
    color: #1a202c;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.detailed-services-section .section-header h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-details {
    display: grid;
    gap: 30px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 176, 155, 0.15);
}

.service-detail-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: flex-start;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.service-detail-card h3 {
    margin-bottom: 15px;
    color: #1a202c;
    font-size: 1.5rem;
}

.service-detail-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.service-features {
    list-style: none;
    margin-bottom: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 12px;
}

.service-arrow {
    color: var(--primary-color);
    font-size: 24px;
    align-self: center;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-arrow {
    transform: translateX(5px);
}

/* Service Overview Section */
.service-overview-section {
    padding: 100px 0;
    background: white;
}

.service-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.service-overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-overview-image {
    position: relative;
}

.service-overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-categories {
    display: grid;
    gap: 60px;
}

.tech-category h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a202c;
    text-align: center;
    font-weight: 600;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.tech-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 176, 155, 0.15);
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tech-item span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Development Process Section */
.development-process-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.development-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 176, 155, 0.3);
}

.timeline-content {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-inner.png') center/cover no-repeat;
    opacity: 0.05;
}

.pricing-section .section-header {
    position: relative;
    z-index: 2;
}

.pricing-section .section-header h2,
.pricing-section .section-header p {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--secondary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    color: #666;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i.fa-check {
    color: var(--secondary-color);
}

.pricing-features i.fa-times {
    color: #ccc;
}

.btn-full {
    width: 100%;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a202c;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Inner Banner Styles */
.inner-banner {
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Prevents overlap with fixed header */
}

.inner-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .inner-banner {
        min-height: 180px;
        padding-top: 80px; /* Smaller header on mobile */
    }
    .inner-banner h1 {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-detail-content,
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px;
        max-width: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    /* Page Header Mobile */
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Services Detail Section Mobile */
    .services-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-detail-text h2 {
        font-size: 1.8rem;
    }
    
    .member {
        padding: 15px;
    }
    
    .member img {
        width: 50px;
        height: 50px;
    }
    
    .image-grid {
        gap: 10px;
    }
    
    .img-1 {
        height: 200px;
    }
    
    .img-2, .img-3 {
        height: 150px;
    }
    
    /* Detailed Services Section Mobile */
    .detailed-services-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .detailed-services-section .section-header h3 {
        font-size: 1.4rem;
    }
    
    .service-detail-card {
        padding: 25px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .service-arrow {
        display: none;
    }
    
    .service-detail-card h3 {
        font-size: 1.3rem;
    }
    
    .service-features {
        text-align: left;
    }
}

/* Responsive Design for Web Development Page */
@media (max-width: 768px) {
    /* Service Overview Mobile */
    .service-overview-content {
               grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-overview-text h2 {
        font-size: 2rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    /* Technologies Mobile */
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .tech-item {
        padding: 20px 15px;
    }
    
    .tech-item i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .tech-item span {
        font-size: 1rem;
    }
    
    /* Development Process Mobile */
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        border-left: 4px solid var(--primary-color);
        border-right: none;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
    
    /* CTA Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .services-detail-section {
        padding: 60px 0;
    }
    
    .detailed-services-section {
        padding: 60px 0;
    }
    
    .service-detail-card {
        padding: 20px;
    }
    
    .member {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Privacy Policy Styles */
.policy-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 176, 155, 0.10), 0 1.5px 8px rgba(150, 201, 61, 0.08);
    padding: 48px 32px 32px 32px;
    margin: 40px auto 60px auto;
    max-width: 800px;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
}
.policy-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.policy-card h2 i {
    color: var(--secondary-color);
    font-size: 2rem;
}
.policy-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}
.policy-section {
    margin-bottom: 2.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}
.policy-section:last-child {
    border-bottom: none;
}
.policy-section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.policy-section h3 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.7rem;
}
.policy-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
    padding-left: 1.5em;
    position: relative;
}
.policy-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1em;
}
.policy-thankyou {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
}
@media (max-width: 600px) {
    .policy-card {
        padding: 24px 10px 18px 10px;
    }
    .policy-card h2 {
        font-size: 1.3rem;
    }
    .policy-section h3 {
        font-size: 1rem;
    }
}
