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

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    display: flex;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    top: 0;
    width: calc(100% - 3rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    transition: all 0.3s ease;
      
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 15rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add a small delay before hiding the dropdown */
.dropdown:not(:hover) .dropdown-content {
    transition-delay: 0.2s;
}

.dropdown-content a {
    color: #1a1a1a;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

/* Add a small invisible area above the dropdown to prevent it from disappearing */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #0a0b6e;
    padding-left: 1.5rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown > .nav-link::after {
    content: '▾';
    font-size: 0.8rem;
    margin-left: 0.25rem;
    position: relative;
    
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #090b70;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #01295c;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    margin-left: 3rem;
}

.cta-button:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

.cta-button::after {
    display: none;
}

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

.bar {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    padding-top: 10px;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Boost Section */
.boost-section {
    padding: 120px 0;
    text-align: center;
    background: #fafafa;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.view-services-btn {
    display: inline-block;
    background: #01295c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
}

.view-services-btn:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-text h2 {
    color: #01295c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-text p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

.featured-text a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.featured-text a:hover {
    color: #01295c;
    border-bottom-color: #01295c;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn img,
.play-store-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
    transform: scale(1.05);
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #01295c;
    margin-bottom: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.service-card:hover .service-description {
    opacity: 1;
    max-height: 250px;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    background: #01295c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 41, 92, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.service-link:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
}

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

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.stats-section .section-description {
    color: white;
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.author-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #01295c;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fdfdfd;
    font-weight: 800;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #01295c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #01295c;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0a1a4a;
    text-decoration: underline;
}

/* Service Pages Styles */
.nav-link.active {
    color: #01295c;
    font-weight: 600;
}

.service-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.service-details {
    padding: 120px 0;
    background: white;
}

.service-detail-card {
    background: transparent;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: transparent;
}

/* Enhanced Service Card Styles */
.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card .service-link {
    margin-top: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-detail-card .service-link:hover {
    transform: translateY(-2px);
    color: white;
}

/* Individual Service Card Hover Effects */
.ai-service:hover {
    border-left: 4px solid #01295c;
}

.mobile-service:hover {
    border-left: 4px solid #01295c;
}

.web-service:hover {
    border-left: 4px solid #01295c;
}

.marketing-service:hover {
    border-left: 4px solid #01295c;
}

.seo-service:hover {
    border-left: 4px solid #01295c;
}

.design-service:hover {
    border-left: 4px solid #01295c;
}

.video-service:hover {
    border-left: 4px solid #01295c;
}

.hosting-service:hover {
    border-left: 4px solid #01295c;
}

.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* FAQ Styles */
.faq-section {
    padding: 120px 0;
    background: #fafafa;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

.faq-question i {
    color: #01295c;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

/* Services CTA Section */
.services-cta-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.services-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.service-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(1, 41, 92, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-cta-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.2);
    border-color: rgba(1, 41, 92, 0.3);
}

.service-cta-card:hover::before {
    opacity: 0.05;
}

.service-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-cta-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
    transition: all 0.3s ease;
}

.service-cta-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(1, 41, 92, 0.4);
}

.service-cta-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-cta-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.get-started-btn {
    display: inline-block;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 41, 92, 0.3);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #0a1a4a 0%, #0a1a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.4);
    color: white;
    text-decoration: none;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #1e293b;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services CTA Grid Mobile */
    .services-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-cta-card .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-cta-card h3 {
        font-size: 1.2rem;
    }
    
    .service-cta-card p {
        font-size: 0.9rem;
    }

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

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .boost-section,
    .featured-section,
    .services-section,
    .stats-section,
    .testimonials-section {
        padding: 80px 0;
    }

    /* Mobile image adjustments */
    .featured-image img {
        margin-top: 2rem;
    }

    .article-hero-image {
        height: 250px;
    }

    .portfolio-image img {
        height: 200px;
    }

    .hero-img {
        margin-top: 2rem;
        max-width: 400px;
    }

    .service-hero {
        padding: 140px 0 80px;
    }

    .service-details,
    .faq-section,
    .services-cta-section {
        padding: 80px 0;
    }

    .service-cta,
    .final-cta {
        padding: 60px 0;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .hero-img {
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #01295c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Enhanced responsive image styles */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    display: block;
}

img:not([src]) {
    opacity: 0;
}

/* Specific image responsiveness */
.logo {
    max-height: 50px;
    width: auto;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Portfolio images */
.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #01295c;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #01295c;
    color: white;
}

::-moz-selection {
    background: #01295c;
    color: white;
}

/* Get Started Page Styles */
.get-started-hero {
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="300" r="150" fill="url(%23grad1)"/><circle cx="400" cy="700" r="120" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.get-started-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-started-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Project Form Section */
.project-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.project-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(1, 41, 92, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.project-form-section .container {
    position: relative;
    z-index: 2;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Project Form Styles */
.project-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    overflow: hidden;
    position: relative;
}

.project-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #01295c 0%, #01295c 50%, #01295c 100%);
}

.form-step {
    padding: 3rem;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.form-step h3::before {
    content: '';
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    border-radius: 2px;
    margin-right: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01295c;
    box-shadow: 0 0 0 3px rgba(1, 41, 92, 0.1);
    transform: translateY(-2px);
}

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

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23374151" d="M6 8L0 2h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.next-btn,
.submit-btn {
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(1, 41, 92, 0.4);
}

.back-btn {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-btn:hover::before {
    left: 100%;
}

/* Project Estimate Card */
.project-estimate {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    position: sticky;
    top: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #01295c, #4a088e);
    background-origin: border-box;
}

.project-estimate h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 0.5rem;
    text-align: center;
}

.project-estimate > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.estimate-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.estimate-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 1px solid rgba(1, 41, 92, 0.1);
}

.estimate-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimate-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.estimate-note {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.estimate-description {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(1, 41, 92, 0.05);
    border-radius: 12px;
    border-left: 4px solid #01295c;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.feature-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.feature-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(1, 41, 92, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

.service-overview-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-overview-card:hover::before {
    opacity: 0.05;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
    text-decoration: none;
}

.service-overview-card .service-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.service-overview-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.service-overview-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad2" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad2)"/><circle cx="800" cy="300" r="150" fill="url(%23grad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: #01295c;
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Get Started Page */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .project-estimate {
        position: static;
    }
    
    .get-started-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .get-started-hero {
        padding: 120px 0 60px;
    }
    
    .get-started-title {
        font-size: 2.2rem;
    }
    
    .get-started-description {
        font-size: 1.1rem;
    }
    
    .project-form-section {
        padding: 80px 0;
    }
    
    .form-step {
        padding: 2rem;
    }
    
    .form-step h3 {
        font-size: 1.5rem;
    }
    
    .project-estimate {
        padding: 2rem;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .get-started-title {
        font-size: 1.8rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .project-estimate {
        padding: 1.5rem;
    }
    
    .feature-card,
    .process-step,
    .service-overview-card {
        padding: 2rem 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    opacity: 0.3;
}

.privacy-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.privacy-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.last-updated,
.effective-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.privacy-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.toc-section h2 {
    color: #01295c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.toc-list a:hover {
    color: #01295c;
    border-left-color: #01295c;
    background: #f7fafc;
    padding-left: 1.5rem;
}

.policy-sections {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #01295c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section ul li strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-section {
        position: static;
        order: 2;
    }
    
    .policy-sections {
        order: 1;
    }
}

@media (max-width: 768px) {
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-sections {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    
    .policy-sections {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .toc-section {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Global Presence Section Styles */
.global-presence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.country-card:hover::before {
    transform: scaleX(1);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.country-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.country-card h3 {
    color: #01295c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.country-card ul {
    list-style: none;
    padding: 0;
}

.country-card ul li {
    color: #01295c;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.country-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #01295c;
    font-weight: bold;
}

.country-card ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Global Presence Section */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .country-card {
        padding: 1.5rem;
    }
    
    .country-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .global-presence-section {
        padding: 60px 0;
    }
    
    .country-card {
        padding: 1.25rem;
    }
    
    .country-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    display: flex;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    top: 0;
    width: calc(100% - 3rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    transition: all 0.3s ease;
      
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 15rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add a small delay before hiding the dropdown */
.dropdown:not(:hover) .dropdown-content {
    transition-delay: 0.2s;
}

.dropdown-content a {
    color: #1a1a1a;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

/* Add a small invisible area above the dropdown to prevent it from disappearing */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #0a0b6e;
    padding-left: 1.5rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown > .nav-link::after {
    content: '▾';
    font-size: 0.8rem;
    margin-left: 0.25rem;
    position: relative;
    
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #090b70;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #01295c;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    margin-left: 3rem;
}

.cta-button:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

.cta-button::after {
    display: none;
}

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

.bar {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    padding-top: 10px;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Boost Section */
.boost-section {
    padding: 120px 0;
    text-align: center;
    background: #fafafa;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.view-services-btn {
    display: inline-block;
    background: #01295c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
}

.view-services-btn:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-text h2 {
    color: #01295c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-text p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

.featured-text a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.featured-text a:hover {
    color: #01295c;
    border-bottom-color: #01295c;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn img,
.play-store-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
    transform: scale(1.05);
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #01295c;
    margin-bottom: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.service-card:hover .service-description {
    opacity: 1;
    max-height: 250px;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    background: #01295c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 41, 92, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.service-link:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
}

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

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.stats-section .section-description {
    color: white;
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.author-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #01295c;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fdfdfd;
    font-weight: 800;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #01295c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #01295c;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0a1a4a;
    text-decoration: underline;
}

/* Service Pages Styles */
.nav-link.active {
    color: #01295c;
    font-weight: 600;
}

.service-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.service-details {
    padding: 120px 0;
    background: white;
}

.service-detail-card {
    background: transparent;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: transparent;
}

/* Enhanced Service Card Styles */
.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card .service-link {
    margin-top: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-detail-card .service-link:hover {
    transform: translateY(-2px);
    color: white;
}

/* Individual Service Card Hover Effects */
.ai-service:hover {
    border-left: 4px solid #01295c;
}

.mobile-service:hover {
    border-left: 4px solid #01295c;
}

.web-service:hover {
    border-left: 4px solid #01295c;
}

.marketing-service:hover {
    border-left: 4px solid #01295c;
}

.seo-service:hover {
    border-left: 4px solid #01295c;
}

.design-service:hover {
    border-left: 4px solid #01295c;
}

.video-service:hover {
    border-left: 4px solid #01295c;
}

.hosting-service:hover {
    border-left: 4px solid #01295c;
}

.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* FAQ Styles */
.faq-section {
    padding: 120px 0;
    background: #fafafa;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

.faq-question i {
    color: #01295c;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

/* Services CTA Section */
.services-cta-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.services-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.service-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(1, 41, 92, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-cta-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.2);
    border-color: rgba(1, 41, 92, 0.3);
}

.service-cta-card:hover::before {
    opacity: 0.05;
}

.service-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-cta-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
    transition: all 0.3s ease;
}

.service-cta-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(1, 41, 92, 0.4);
}

.service-cta-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-cta-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.get-started-btn {
    display: inline-block;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 41, 92, 0.3);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #0a1a4a 0%, #0a1a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.4);
    color: white;
    text-decoration: none;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #1e293b;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services CTA Grid Mobile */
    .services-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-cta-card .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-cta-card h3 {
        font-size: 1.2rem;
    }
    
    .service-cta-card p {
        font-size: 0.9rem;
    }

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

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .boost-section,
    .featured-section,
    .services-section,
    .stats-section,
    .testimonials-section {
        padding: 80px 0;
    }

    /* Mobile image adjustments */
    .featured-image img {
        margin-top: 2rem;
    }

    .article-hero-image {
        height: 250px;
    }

    .portfolio-image img {
        height: 200px;
    }

    .hero-img {
        margin-top: 2rem;
        max-width: 400px;
    }

    .service-hero {
        padding: 140px 0 80px;
    }

    .service-details,
    .faq-section,
    .services-cta-section {
        padding: 80px 0;
    }

    .service-cta,
    .final-cta {
        padding: 60px 0;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .hero-img {
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #01295c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Enhanced responsive image styles */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    display: block;
}

img:not([src]) {
    opacity: 0;
}

/* Specific image responsiveness */
.logo {
    max-height: 50px;
    width: auto;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Portfolio images */
.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #01295c;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #01295c;
    color: white;
}

::-moz-selection {
    background: #01295c;
    color: white;
}

/* Get Started Page Styles */
.get-started-hero {
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="300" r="150" fill="url(%23grad1)"/><circle cx="400" cy="700" r="120" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.get-started-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-started-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Project Form Section */
.project-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.project-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(1, 41, 92, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.project-form-section .container {
    position: relative;
    z-index: 2;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Project Form Styles */
.project-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    overflow: hidden;
    position: relative;
}

.project-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #01295c 0%, #01295c 50%, #01295c 100%);
}

.form-step {
    padding: 3rem;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.form-step h3::before {
    content: '';
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    border-radius: 2px;
    margin-right: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01295c;
    box-shadow: 0 0 0 3px rgba(1, 41, 92, 0.1);
    transform: translateY(-2px);
}

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

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23374151" d="M6 8L0 2h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.next-btn,
.submit-btn {
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(1, 41, 92, 0.4);
}

.back-btn {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-btn:hover::before {
    left: 100%;
}

/* Project Estimate Card */
.project-estimate {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    position: sticky;
    top: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #01295c, #4a088e);
    background-origin: border-box;
}

.project-estimate h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 0.5rem;
    text-align: center;
}

.project-estimate > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.estimate-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.estimate-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 1px solid rgba(1, 41, 92, 0.1);
}

.estimate-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimate-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.estimate-note {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.estimate-description {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(1, 41, 92, 0.05);
    border-radius: 12px;
    border-left: 4px solid #01295c;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.feature-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.feature-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(1, 41, 92, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

.service-overview-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-overview-card:hover::before {
    opacity: 0.05;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
    text-decoration: none;
}

.service-overview-card .service-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.service-overview-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.service-overview-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad2" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad2)"/><circle cx="800" cy="300" r="150" fill="url(%23grad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: #01295c;
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Get Started Page */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .project-estimate {
        position: static;
    }
    
    .get-started-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .get-started-hero {
        padding: 120px 0 60px;
    }
    
    .get-started-title {
        font-size: 2.2rem;
    }
    
    .get-started-description {
        font-size: 1.1rem;
    }
    
    .project-form-section {
        padding: 80px 0;
    }
    
    .form-step {
        padding: 2rem;
    }
    
    .form-step h3 {
        font-size: 1.5rem;
    }
    
    .project-estimate {
        padding: 2rem;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .get-started-title {
        font-size: 1.8rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .project-estimate {
        padding: 1.5rem;
    }
    
    .feature-card,
    .process-step,
    .service-overview-card {
        padding: 2rem 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    opacity: 0.3;
}

.privacy-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.privacy-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.last-updated,
.effective-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.privacy-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.toc-section h2 {
    color: #01295c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.toc-list a:hover {
    color: #01295c;
    border-left-color: #01295c;
    background: #f7fafc;
    padding-left: 1.5rem;
}

.policy-sections {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #01295c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section ul li strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-section {
        position: static;
        order: 2;
    }
    
    .policy-sections {
        order: 1;
    }
}

@media (max-width: 768px) {
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-sections {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    
    .policy-sections {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .toc-section {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Global Presence Section Styles */
.global-presence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.country-card:hover::before {
    transform: scaleX(1);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.country-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.country-card h3 {
    color: #01295c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.country-card ul {
    list-style: none;
    padding: 0;
}

.country-card ul li {
    color: #01295c;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.country-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #01295c;
    font-weight: bold;
}

.country-card ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Global Presence Section */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .country-card {
        padding: 1.5rem;
    }
    
    .country-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .global-presence-section {
        padding: 60px 0;
    }
    
    .country-card {
        padding: 1.25rem;
    }
    
    .country-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
  body, html {
    overflow-x: hidden !important;
  }
  .container, .hero, .navbar, .main-content, .hero-content {
    margin-left: 0 !important;
    padding-left: 0 !important;
    overflow-x: hidden !important;
  }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    display: flex;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    top: 0;
    width: calc(100% - 3rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    transition: all 0.3s ease;
      
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 15rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add a small delay before hiding the dropdown */
.dropdown:not(:hover) .dropdown-content {
    transition-delay: 0.2s;
}

.dropdown-content a {
    color: #1a1a1a;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

/* Add a small invisible area above the dropdown to prevent it from disappearing */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #0a0b6e;
    padding-left: 1.5rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown > .nav-link::after {
    content: '▾';
    font-size: 0.8rem;
    margin-left: 0.25rem;
    position: relative;
    
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #090b70;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #01295c;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    margin-left: 3rem;
}

.cta-button:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

.cta-button::after {
    display: none;
}

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

.bar {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    padding-top: 10px;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Boost Section */
.boost-section {
    padding: 120px 0;
    text-align: center;
    background: #fafafa;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.view-services-btn {
    display: inline-block;
    background: #01295c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
}

.view-services-btn:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-text h2 {
    color: #01295c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-text p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

.featured-text a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.featured-text a:hover {
    color: #01295c;
    border-bottom-color: #01295c;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn img,
.play-store-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
    transform: scale(1.05);
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #01295c;
    margin-bottom: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.service-card:hover .service-description {
    opacity: 1;
    max-height: 250px;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    background: #01295c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 41, 92, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.service-link:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
}

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

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.stats-section .section-description {
    color: white;
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.author-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #01295c;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fdfdfd;
    font-weight: 800;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #01295c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #01295c;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0a1a4a;
    text-decoration: underline;
}

/* Service Pages Styles */
.nav-link.active {
    color: #01295c;
    font-weight: 600;
}

.service-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.service-details {
    padding: 120px 0;
    background: white;
}

.service-detail-card {
    background: transparent;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: transparent;
}

/* Enhanced Service Card Styles */
.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card .service-link {
    margin-top: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-detail-card .service-link:hover {
    transform: translateY(-2px);
    color: white;
}

/* Individual Service Card Hover Effects */
.ai-service:hover {
    border-left: 4px solid #01295c;
}

.mobile-service:hover {
    border-left: 4px solid #01295c;
}

.web-service:hover {
    border-left: 4px solid #01295c;
}

.marketing-service:hover {
    border-left: 4px solid #01295c;
}

.seo-service:hover {
    border-left: 4px solid #01295c;
}

.design-service:hover {
    border-left: 4px solid #01295c;
}

.video-service:hover {
    border-left: 4px solid #01295c;
}

.hosting-service:hover {
    border-left: 4px solid #01295c;
}

.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* FAQ Styles */
.faq-section {
    padding: 120px 0;
    background: #fafafa;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

.faq-question i {
    color: #01295c;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

/* Services CTA Section */
.services-cta-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.services-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.service-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(1, 41, 92, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-cta-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.2);
    border-color: rgba(1, 41, 92, 0.3);
}

.service-cta-card:hover::before {
    opacity: 0.05;
}

.service-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-cta-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
    transition: all 0.3s ease;
}

.service-cta-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(1, 41, 92, 0.4);
}

.service-cta-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-cta-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.get-started-btn {
    display: inline-block;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 41, 92, 0.3);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #0a1a4a 0%, #0a1a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.4);
    color: white;
    text-decoration: none;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #1e293b;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services CTA Grid Mobile */
    .services-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-cta-card .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-cta-card h3 {
        font-size: 1.2rem;
    }
    
    .service-cta-card p {
        font-size: 0.9rem;
    }

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

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .boost-section,
    .featured-section,
    .services-section,
    .stats-section,
    .testimonials-section {
        padding: 80px 0;
    }

    /* Mobile image adjustments */
    .featured-image img {
        margin-top: 2rem;
    }

    .article-hero-image {
        height: 250px;
    }

    .portfolio-image img {
        height: 200px;
    }

    .hero-img {
        margin-top: 2rem;
        max-width: 400px;
    }

    .service-hero {
        padding: 140px 0 80px;
    }

    .service-details,
    .faq-section,
    .services-cta-section {
        padding: 80px 0;
    }

    .service-cta,
    .final-cta {
        padding: 60px 0;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .hero-img {
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #01295c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Enhanced responsive image styles */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    display: block;
}

img:not([src]) {
    opacity: 0;
}

/* Specific image responsiveness */
.logo {
    max-height: 50px;
    width: auto;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Portfolio images */
.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #01295c;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #01295c;
    color: white;
}

::-moz-selection {
    background: #01295c;
    color: white;
}

/* Get Started Page Styles */
.get-started-hero {
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="300" r="150" fill="url(%23grad1)"/><circle cx="400" cy="700" r="120" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.get-started-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-started-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Project Form Section */
.project-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.project-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(1, 41, 92, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.project-form-section .container {
    position: relative;
    z-index: 2;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Project Form Styles */
.project-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    overflow: hidden;
    position: relative;
}

.project-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #01295c 0%, #01295c 50%, #01295c 100%);
}

.form-step {
    padding: 3rem;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.form-step h3::before {
    content: '';
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    border-radius: 2px;
    margin-right: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01295c;
    box-shadow: 0 0 0 3px rgba(1, 41, 92, 0.1);
    transform: translateY(-2px);
}

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

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23374151" d="M6 8L0 2h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.next-btn,
.submit-btn {
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(1, 41, 92, 0.4);
}

.back-btn {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-btn:hover::before {
    left: 100%;
}

/* Project Estimate Card */
.project-estimate {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    position: sticky;
    top: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #01295c, #4a088e);
    background-origin: border-box;
}

.project-estimate h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 0.5rem;
    text-align: center;
}

.project-estimate > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.estimate-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.estimate-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 1px solid rgba(1, 41, 92, 0.1);
}

.estimate-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimate-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.estimate-note {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.estimate-description {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(1, 41, 92, 0.05);
    border-radius: 12px;
    border-left: 4px solid #01295c;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.feature-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.feature-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(1, 41, 92, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

.service-overview-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-overview-card:hover::before {
    opacity: 0.05;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
    text-decoration: none;
}

.service-overview-card .service-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.service-overview-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.service-overview-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad2" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad2)"/><circle cx="800" cy="300" r="150" fill="url(%23grad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: #01295c;
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Get Started Page */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .project-estimate {
        position: static;
    }
    
    .get-started-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .get-started-hero {
        padding: 120px 0 60px;
    }
    
    .get-started-title {
        font-size: 2.2rem;
    }
    
    .get-started-description {
        font-size: 1.1rem;
    }
    
    .project-form-section {
        padding: 80px 0;
    }
    
    .form-step {
        padding: 2rem;
    }
    
    .form-step h3 {
        font-size: 1.5rem;
    }
    
    .project-estimate {
        padding: 2rem;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .get-started-title {
        font-size: 1.8rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .project-estimate {
        padding: 1.5rem;
    }
    
    .feature-card,
    .process-step,
    .service-overview-card {
        padding: 2rem 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    opacity: 0.3;
}

.privacy-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.privacy-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.last-updated,
.effective-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.privacy-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.toc-section h2 {
    color: #01295c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.toc-list a:hover {
    color: #01295c;
    border-left-color: #01295c;
    background: #f7fafc;
    padding-left: 1.5rem;
}

.policy-sections {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #01295c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section ul li strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-section {
        position: static;
        order: 2;
    }
    
    .policy-sections {
        order: 1;
    }
}

@media (max-width: 768px) {
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-sections {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    
    .policy-sections {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .toc-section {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Global Presence Section Styles */
.global-presence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.country-card:hover::before {
    transform: scaleX(1);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.country-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.country-card h3 {
    color: #01295c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.country-card ul {
    list-style: none;
    padding: 0;
}

.country-card ul li {
    color: #01295c;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.country-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #01295c;
    font-weight: bold;
}

.country-card ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Global Presence Section */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .country-card {
        padding: 1.5rem;
    }
    
    .country-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .global-presence-section {
        padding: 60px 0;
    }
    
    .country-card {
        padding: 1.25rem;
    }
    
    .country-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
  body, html {
    overflow-x: hidden !important;
  }
  .container, .hero, .navbar, .main-content, .hero-content {
    margin-left: 0 !important;
    padding-left: 0 !important;
    
  }
  .container {
    margin-left: 10px !important;
    margin-right: 10px !important;
    /* You can adjust 10px to your preferred value */
  }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    display: flex;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    top: 0;
    width: calc(100% - 3rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    transition: all 0.3s ease;
      
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 15rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add a small delay before hiding the dropdown */
.dropdown:not(:hover) .dropdown-content {
    transition-delay: 0.2s;
}

.dropdown-content a {
    color: #1a1a1a;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

/* Add a small invisible area above the dropdown to prevent it from disappearing */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #0a0b6e;
    padding-left: 1.5rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown > .nav-link::after {
    content: '▾';
    font-size: 0.8rem;
    margin-left: 0.25rem;
    position: relative;
    
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #090b70;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #01295c;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    margin-left: 3rem;
}

.cta-button:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

.cta-button::after {
    display: none;
}

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

.bar {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    padding-top: 10px;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Boost Section */
.boost-section {
    padding: 120px 0;
    text-align: center;
    background: #fafafa;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.view-services-btn {
    display: inline-block;
    background: #01295c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
}

.view-services-btn:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.4);
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.featured-text h2 {
    color: #01295c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.featured-text p {
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

.featured-text a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.featured-text a:hover {
    color: #01295c;
    border-bottom-color: #01295c;
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn img,
.play-store-btn img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
    transform: scale(1.05);
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: #01295c;
    margin-bottom: 0;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

.service-card:hover .service-description {
    opacity: 1;
    max-height: 250px;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    background: #01295c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 41, 92, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.service-link:hover {
    background: #0a1a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.3);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
}

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

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.stats-section .section-description {
    color: white;
    font-size: 1rem;
    line-height: 25px;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.author-info h4 {
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #01295c;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fdfdfd;
    font-weight: 800;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #01295c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #374151;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #01295c;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom a {
    color: #01295c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0a1a4a;
    text-decoration: underline;
}

/* Service Pages Styles */
.nav-link.active {
    color: #01295c;
    font-weight: 600;
}

.service-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-hero-description {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.service-details {
    padding: 120px 0;
    background: white;
}

.service-detail-card {
    background: transparent;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: transparent;
}

/* Enhanced Service Card Styles */
.service-detail-card {
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card .service-link {
    margin-top: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-detail-card .service-link:hover {
    transform: translateY(-2px);
    color: white;
}

/* Individual Service Card Hover Effects */
.ai-service:hover {
    border-left: 4px solid #01295c;
}

.mobile-service:hover {
    border-left: 4px solid #01295c;
}

.web-service:hover {
    border-left: 4px solid #01295c;
}

.marketing-service:hover {
    border-left: 4px solid #01295c;
}

.seo-service:hover {
    border-left: 4px solid #01295c;
}

.design-service:hover {
    border-left: 4px solid #01295c;
}

.video-service:hover {
    border-left: 4px solid #01295c;
}

.hosting-service:hover {
    border-left: 4px solid #01295c;
}

.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* FAQ Styles */
.faq-section {
    padding: 120px 0;
    background: #fafafa;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

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

.faq-question i {
    color: #01295c;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

/* Services CTA Section */
.services-cta-section {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.services-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.service-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(1, 41, 92, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-cta-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.2);
    border-color: rgba(1, 41, 92, 0.3);
}

.service-cta-card:hover::before {
    opacity: 0.05;
}

.service-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-cta-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
    transition: all 0.3s ease;
}

.service-cta-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(1, 41, 92, 0.4);
}

.service-cta-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-cta-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.get-started-btn {
    display: inline-block;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 41, 92, 0.3);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.get-started-btn:hover {
    background: linear-gradient(135deg, #0a1a4a 0%, #0a1a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.4);
    color: white;
    text-decoration: none;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #1e293b;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services CTA Grid Mobile */
    .services-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-cta-card .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-cta-card h3 {
        font-size: 1.2rem;
    }
    
    .service-cta-card p {
        font-size: 0.9rem;
    }

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

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .boost-section,
    .featured-section,
    .services-section,
    .stats-section,
    .testimonials-section {
        padding: 80px 0;
    }

    /* Mobile image adjustments */
    .featured-image img {
        margin-top: 2rem;
    }

    .article-hero-image {
        height: 250px;
    }

    .portfolio-image img {
        height: 200px;
    }

    .hero-img {
        margin-top: 2rem;
        max-width: 400px;
    }

    .service-hero {
        padding: 140px 0 80px;
    }

    .service-details,
    .faq-section,
    .services-cta-section {
        padding: 80px 0;
    }

    .service-cta,
    .final-cta {
        padding: 60px 0;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .hero-img {
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #01295c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Enhanced responsive image styles */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    display: block;
}

img:not([src]) {
    opacity: 0;
}

/* Specific image responsiveness */
.logo {
    max-height: 50px;
    width: auto;
}

.footer-logo {
    max-height: 40px;
    width: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Portfolio images */
.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #01295c;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #01295c;
    color: white;
}

::-moz-selection {
    background: #01295c;
    color: white;
}

/* Get Started Page Styles */
.get-started-hero {
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="300" r="150" fill="url(%23grad1)"/><circle cx="400" cy="700" r="120" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.get-started-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-started-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Project Form Section */
.project-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.project-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(1, 41, 92, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.project-form-section .container {
    position: relative;
    z-index: 2;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Project Form Styles */
.project-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    overflow: hidden;
    position: relative;
}

.project-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #01295c 0%, #01295c 50%, #01295c 100%);
}

.form-step {
    padding: 3rem;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.form-step h3::before {
    content: '';
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #01295c, #01295c);
    border-radius: 2px;
    margin-right: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #01295c;
    box-shadow: 0 0 0 3px rgba(1, 41, 92, 0.1);
    transform: translateY(-2px);
}

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

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23374151" d="M6 8L0 2h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.next-btn,
.submit-btn {
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(1, 41, 92, 0.4);
}

.back-btn {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-btn:hover::before {
    left: 100%;
}

/* Project Estimate Card */
.project-estimate {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.1);
    position: sticky;
    top: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #01295c, #4a088e);
    background-origin: border-box;
}

.project-estimate h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 0.5rem;
    text-align: center;
}

.project-estimate > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.estimate-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.estimate-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 1px solid rgba(1, 41, 92, 0.1);
}

.estimate-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimate-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #01295c 0%, #4a088e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.estimate-note {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.estimate-description {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(1, 41, 92, 0.05);
    border-radius: 12px;
    border-left: 4px solid #01295c;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.feature-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 41, 92, 0.3);
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.feature-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(1, 41, 92, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: white;
}

.service-overview-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-overview-card:hover::before {
    opacity: 0.05;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(1, 41, 92, 0.15);
    border-color: rgba(1, 41, 92, 0.2);
    text-decoration: none;
}

.service-overview-card .service-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(1, 41, 92, 0.3);
}

.service-overview-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 700;
    color: #01295c;
    margin-bottom: 1rem;
}

.service-overview-card p {
    position: relative;
    z-index: 2;
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad2" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad2)"/><circle cx="800" cy="300" r="150" fill="url(%23grad2)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    display: inline-block;
    background: white;
    color: #01295c;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: #01295c;
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Get Started Page */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .project-estimate {
        position: static;
    }
    
    .get-started-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .get-started-hero {
        padding: 120px 0 60px;
    }
    
    .get-started-title {
        font-size: 2.2rem;
    }
    
    .get-started-description {
        font-size: 1.1rem;
    }
    
    .project-form-section {
        padding: 80px 0;
    }
    
    .form-step {
        padding: 2rem;
    }
    
    .form-step h3 {
        font-size: 1.5rem;
    }
    
    .project-estimate {
        padding: 2rem;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .get-started-title {
        font-size: 1.8rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .project-estimate {
        padding: 1.5rem;
    }
    
    .feature-card,
    .process-step,
    .service-overview-card {
        padding: 2rem 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #01295c 25%, #01295c 100%);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    opacity: 0.3;
}

.privacy-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.privacy-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.last-updated,
.effective-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.privacy-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.toc-section h2 {
    color: #01295c;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.toc-list a:hover {
    color: #01295c;
    border-left-color: #01295c;
    background: #f7fafc;
    padding-left: 1.5rem;
}

.policy-sections {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #01295c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section ul li strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-section {
        position: static;
        order: 2;
    }
    
    .policy-sections {
        order: 1;
    }
}

@media (max-width: 768px) {
    .privacy-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-sections {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero .hero-title {
        font-size: 2rem;
    }
    
    .policy-sections {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .toc-section {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Global Presence Section Styles */
.global-presence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.country-card:hover::before {
    transform: scaleX(1);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.country-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01295c 0%, #01295c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.country-card h3 {
    color: #01295c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.country-card ul {
    list-style: none;
    padding: 0;
}

.country-card ul li {
    color: #01295c;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.country-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #01295c;
    font-weight: bold;
}

.country-card ul li:last-child {
    border-bottom: none;
}


/* Responsive Design for Global Presence Section */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .country-card {
        padding: 1.5rem;
    }
    
    .country-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .global-presence-section {
        padding: 60px 0;
    }
    
    .country-card {
        padding: 1.25rem;
    }
    
    .country-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex !important;
  }
  .nav-menu {
    display: none !important;
  }
  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1001;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
}