/* Root Variables */
:root {
    --primary-color: #011f5f;
    --secondary-color: #31353e;
    --accent-color: #3b82f6;
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(1, 31, 95, 0.08);
    --shadow-md: 0 4px 16px rgba(1, 31, 95, 0.12);
    --shadow-lg: 0 8px 32px rgba(1, 31, 95, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles - UPDATED */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(1, 31, 95, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: rgba(1, 31, 95, 0.98);
    box-shadow: var(--shadow-lg);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.btn-get-started {
    background: var(--accent-color);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.6rem 1.5rem !important;
    margin-left: 1rem;
}

.btn-get-started:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(1, 31, 95, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        margin: 0 !important;
    }
    
    .nav-link:hover {
        background: rgba(59, 130, 246, 0.2);
    }
    
    .btn-get-started {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    }
    
    .navbar-toggler-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Hero Section - UPDATED */
/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #011f5f 0%, #1a2332 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    border: none;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.phone-mockup i {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.3;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.6;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    opacity: 1;
}

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

/* Section Styles */
.services-section,
.features-section,
.testimonials-section,
.contact-section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(1, 31, 95, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    background: var(--light-bg);
}

.features-image {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floating 3s ease-in-out infinite;
}

.feature-card:nth-child(1) {
    top: 20%;
    left: 10%;
}

.feature-card:nth-child(2) {
    top: 50%;
    right: 10%;
}

.feature-card:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

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

.feature-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.about-card-1 {
    top: 10%;
    left: 0;
    animation: float-card 4s ease-in-out infinite;
}

.about-card-2 {
    top: 50%;
    right: 5%;
    animation: float-card 4s ease-in-out infinite;
    animation-delay: 1s;
}

.about-card-3 {
    bottom: 15%;
    left: 10%;
    animation: float-card 4s ease-in-out infinite;
    animation-delay: 2s;
}

.about-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.about-card .card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-card .card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.about-card .card-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2332 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(1, 31, 95, 0.3);
    position: relative;
    z-index: 1;
    animation: pulse-circle 3s ease-in-out infinite;
}

.circle-inner {
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(59, 130, 246, 0.3);
}

.circle-inner i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.9;
}

.about-bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.about-bg-element.element-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -10%;
    right: -10%;
    animation: rotate-slow 20s linear infinite;
}

.about-bg-element.element-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    bottom: -5%;
    left: -5%;
    animation: rotate-slow 15s linear infinite reverse;
}

.about-content {
    padding-left: 2rem;
}

.section-label {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.stat-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stat-box .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.stat-box .stat-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.stat-box .stat-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

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

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(1, 31, 95, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 70px rgba(1, 31, 95, 0.4);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(1, 31, 95, 0.05);
}

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

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    font-size: 1.1rem;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}


.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #011f5f 0%, #1a2332 100%);
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-info {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
}

.contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 2px solid rgba(1, 31, 95, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--accent-color);
}

.footer-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    transition: var(--transition);
}

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

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
/* Responsive - IMPROVED */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 550px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin-top: 2rem;
    }
    
    .features-image {
        height: 400px;
    }
    
    .about-visual {
        height: 400px;
        margin-bottom: 3rem;
    }
    
    .about-circle {
        width: 200px;
        height: 200px;
    }
    
    .circle-inner {
        width: 160px;
        height: 160px;
    }
    
    .circle-inner i {
        font-size: 4rem;
    }
    
    .about-card {
        padding: 1rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 2rem !important;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-item i {
        font-size: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.3rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        margin-top: 2rem;
    }
    
    .phone-mockup i {
        font-size: 5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .about-card {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .about-card .card-icon {
        width: 35px;
        height: 35px;
    }
    
    .about-card .card-icon i {
        font-size: 1rem;
    }
    
    .about-card .card-content h4 {
        font-size: 0.9rem;
    }
    
    .about-card .card-content p {
        font-size: 0.7rem;
    }
    
    .about-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-inner {
        width: 120px;
        height: 120px;
    }
    
    .circle-inner i {
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card i {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-item i {
        font-size: 1.2rem;
    }
    
    .stat-item h3 {
        font-size: 1.1rem;
    }
    
    .stat-item p {
        font-size: 0.7rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .about-visual {
        height: 250px;
    }
    
    .about-circle {
        width: 120px;
        height: 120px;
    }
    
    .circle-inner {
        width: 95px;
        height: 95px;
    }
    
    .circle-inner i {
        font-size: 2.5rem;
    }
    
    .about-card-1,
    .about-card-2,
    .about-card-3 {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .about-stats-grid {
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-box .stat-icon i {
        font-size: 1.2rem;
    }
    
    .stat-box .stat-info h4 {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* Fix for horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
}