* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}


.logo-icon {
    width: 55px;
    height: 55px;
    background: url("assets/Images/logo1.png") no-repeat center;
    background-size: contain;
}
    
.logo-text h1 {
    color: #3b6fb6;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text p {
    color: #666;
    font-size: 12px;
    margin-top: -5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3b6fb6;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #3b6fb6;
}

.cta-button {
    background: #3b6fb6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.cta-button:hover {
    background: #2d5489;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d4a73 50%, #3b6fb6 100%);
    color: white;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.badge::before {
    content: '🔒';
    margin-right: 8px;
}

.hero h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 .highlight {
    color: #ff9933;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff9933;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #3b6fb6;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 13px;
    flex-wrap: wrap;
}

.hero-features span::before {
    content: '✓';
    color: #4caf50;
    margin-right: 8px;
    font-weight: bold;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.badge-stat {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(76,175,80,0.3);
}

.badge-stat small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
}

.hero-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #333;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background: #3b6fb6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #3b6fb6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.section-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-icon.blue { background: #3b6fb6; color: white; }
.feature-icon.green { background: #4caf50; color: white; }
.feature-icon.orange { background: #ff9933; color: white; }
.feature-icon.cyan { background: #00bcd4; color: white; }

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 50px 20px;
    margin: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #3b6fb6 0%, #2d9cdb 100%);
    border-radius: 20px;
    padding: 40px 30px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: white;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-icon.blue { background: #3b6fb6; }
.service-icon.green { background: #4caf50; }
.service-icon.orange { background: #ff9933; }
.service-icon.purple { background: #9c27b0; }
.service-icon.cyan { background: #00bcd4; }
.service-icon.red { background: #f44336; }

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #3b6fb6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}


/* Experience Section */
.experience {
    background: #f5f7fa;
    color: white;
    padding: 80px 40px;
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3b6fb6 0%, #2d9cdb 100%);
    border-radius: 24px;
    padding: 60px 50px;
}

.experience-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.experience-subtitle {
    font-size: 18px;
    text-align: center;
    opacity: 0.95;
    margin-bottom: 60px;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.experience-list h4 {
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.experience-list h4 .icon-globe,
.experience-list h4 .icon-briefcase {
    font-size: 24px;
}

.experience-list ul {
    list-style: none;
}

.experience-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.experience-list li .check-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.experience-list li::before {
    content: none;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.industry-item .industry-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.industry-item::before {
    content: none;
}

.experience-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-white {
    background: white;
    color: #3b6fb6;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us {
    background: #f8f9fa;
    padding: 80px 20px;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.why-us-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.why-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b6fb6, #2d9cdb);
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
}

.why-feature-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.why-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.why-feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.why-us-link {
    display: inline-block;
    color: #3b6fb6;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.why-us-link:hover {
    transform: translateX(5px);
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-method-icon.blue { background: #3b6fb6; color: white; }
.contact-method-icon.green { background: #4caf50; color: white; }

.contact-method-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-method-content a {
    color: #3b6fb6;
    text-decoration: none;
    font-weight: 500;
}

.contact-method-content p {
    color: #666;
    font-size: 14px;
}

.contact-offer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-offer ul {
    list-style: none;
}

.contact-offer li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.contact-offer li::before {
    content: '✓';
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b6fb6;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: #3b6fb6;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #2d5489;
}

.form-note {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d4a73 50%, #3b6fb6 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #3b6fb6;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 13px;
    opacity: 0.9;
    flex-wrap: wrap;
}

.cta-features span::before {
    content: '✓';
    margin-right: 8px;
}

.cta-footer {
    margin-top: 35px;
    font-size: 13px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 20px 25px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 55px;
    height: 55px;
    background: url("assets/Images/logo1.png") no-repeat center;
    background-size: contain;
}

.footer-logo-text h3 {
    color: #3b6fb6;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo-text p {
    color: #999;
    font-size: 11px;
}

.footer-description {
    color: #ccc;
    line-height: 1.7;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #3b6fb6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #2d5489;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3b6fb6;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in-left {
    animation-name: fadeInLeft;
}

.fade-in-right {
    animation-name: fadeInRight;
}

/* Parallax effects */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Hover effects enhanced */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::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;
}

.service-card:hover::before {
    left: 100%;
}

.stat-value {
    display: inline-block;
}

.counting {
    animation: pulse 0.5s ease-in-out;
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #3b6fb6);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Floating animation for hero image */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Glowing effect on CTA buttons */
.btn-primary, .cta-button {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Typing effect */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid #ff9933;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ff9933 }
}

/* Mouse trail effect */
.mouse-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(59, 111, 182, 0.3);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease-out;
}

/* Card tilt effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Particle background for hero */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Progress ring for stats */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 1s ease-in-out;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-container {
        padding: 50px 40px;
    }
    
    .experience-title {
        font-size: 32px;
    }
    
    .experience-subtitle {
        font-size: 16px;
    }
    
    .experience-content {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        padding-top: 80px;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav a {
        display: block;
        padding: 18px 30px;
        width: 100%;
    }
    
    .cta-button {
        margin: 20px 30px;
        display: block;
        text-align: center;
        width: calc(100% - 60px);
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
        font-size: 14px !important;
    }
    
    /* Overlay for mobile menu */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 20px 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .badge-stat {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 16px;
    }
    
    .hero-card {
        bottom: 10px;
        left: 10px;
        padding: 12px;
    }
    
    /* About Section */
    .about {
        padding: 60px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    /* Stats Section */
    .stats {
        padding: 40px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 25px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    /* Services Section */
    .services {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Experience Section */
    .experience {
        padding: 60px 20px;
    }
    
    .experience-container {
        padding: 40px 25px;
    }
    
    .experience-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .experience-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .experience-list h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .experience-list li {
        font-size: 15px;
        padding: 8px 0;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .industry-item {
        font-size: 15px;
    }
    
    .experience-cta {
        margin-top: 35px;
    }
 
    
    /* Why Us Section */
    .why-us {
        padding: 60px 20px;
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-content h2 {
        font-size: 28px;
    }
    
    .why-us-description {
        font-size: 15px;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .cta-stat {
        width: 100%;
    }

    .cta-stat-value {
        font-size: 32px;
    }

    .cta-stat-label {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-white {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cta-features span {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Sample Report */
    .sample-report-section { padding: 60px 20px; }
    .report-gate-card { padding: 35px 24px; }
    .report-gate-icon { font-size: 44px; }
    .report-gate-card h3 { font-size: 19px; }
    .report-gate-form { flex-direction: column; }
    .report-gate-form .btn-primary { width: 100%; justify-content: center; text-align: center; }
    .pdf-frame-wrapper { height: 480px; }
    .viewer-toolbar { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
    .viewer-footer { flex-direction: column; text-align: center; }
    .viewer-cta { width: 100%; justify-content: center; text-align: center; }
    
    /* Footer */
    footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 20px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .section-title,
    .why-us-content h2,
    .contact-info h2,
    .cta-title {
        font-size: 24px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-white {
        font-size: 14px;
        padding: 12px 24px;
    }

    .cta-stat-value {
        font-size: 28px;
    }
    
    .cta-stats {
        gap: 15px;
    }

    .experience-title {
        font-size: 24px;
    }
    
    .experience-subtitle {
        font-size: 14px;
    }
    
    .experience-container {
        padding: 35px 20px;
    }

    .pdf-frame-wrapper { height: 380px; }
    .report-gate-card { padding: 28px 18px; }

    .popup-content {
        padding: 40px 30px;
    }
    
    .popup-icon {
        width: 80px;
        height: 80px;
    }

    .checkmark {
        width: 50px;
        height: 50px;
    }
    
    .popup-content h3 {
        font-size: 22px;
    }
}



.sample-report-section {
    background: #f5f7fa;
    padding: 80px 20px;
}

.sample-report-container {
    max-width: 900px;
    margin: 0 auto;
}

.sample-report-header {
    text-align: center;
    margin-bottom: 50px;
}

.report-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.report-gate-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 560px;
    border: 2px solid #e3f2fd;
}

.report-gate-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.report-gate-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.report-gate-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.report-gate-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.report-gate-form input[type="email"] {
    flex: 1;
    padding: 13px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}

.report-gate-form input[type="email"]:focus {
    border-color: #3b6fb6;
}

.report-gate-form input[type="email"].input-error {
    border-color: #f44336;
}

.report-gate-form .btn-primary {
    white-space: nowrap;
    padding: 13px 24px;
    font-size: 14px;
}

.report-gate-note {
    font-size: 12px !important;
    color: #999 !important;
    margin-bottom: 0 !important;
}

.gate-error {
    margin-top: 10px;
    color: #f44336;
    font-size: 13px;
    font-weight: 500;
}

.report-preview-hint {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hint-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    color: #444;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.report-viewer {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 100%;
}

.viewer-toolbar {
    background: #1a2332;
    color: white;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.viewer-label {
    font-size: 14px;
    font-weight: 600;
}

.viewer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.viewer-badge {
    background: #ff9933;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.viewer-close-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.viewer-close-btn:hover {
    background: rgba(255,255,255,0.25);
}

.pdf-frame-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    background: #525659;
}

.pdf-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.pdf-overlay {
    display: none;
}

.viewer-footer {
    background: #f8f9fa;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.viewer-footer span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.viewer-cta {
    padding: 10px 22px !important;
    font-size: 14px !important;
}


/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-icon {
    width: 100px;
    height: 100px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    width: 60px;
    height: 60px;
    position: relative;
}

.checkmark-circle {
    display: none;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: white;
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawCheck 0.6s 0.2s ease-out forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.popup-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s 0.3s ease-out backwards;
}

.popup-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    animation: fadeInUp 0.5s 0.4s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-popup.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

