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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f1419;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1c2530, #2d3748);
    color: #ffffff;
    border: 2px solid #ff6b35;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b35, #e63946);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    border-color: #e63946;
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand h2 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ff6b35;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.emergency-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff3333;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.85), rgba(28, 37, 48, 0.8), rgba(45, 55, 72, 0.75));
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #f3f4f6;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #e2e8f0;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1a202c;
}

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

.service-card {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #4a5568;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.service-description {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: linear-gradient(rgba(15, 20, 25, 0.9), rgba(28, 37, 48, 0.8)), url('images/features.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.stats .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #0f1419;
}

/* Achievements Section */
.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    border-radius: 12px;
    border: 1px solid #4a5568;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-item h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.achievement-item p {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Security Solutions Section */
.security-solutions {
    margin-bottom: 4rem;
}

/* Values Section */
.values-section {
    background: #1a202c;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    border-left: 4px solid #ff6b35;
}

/* Intro Header */
.intro-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.intro-header h3 {
    color: #e2e8f0;
    font-size: 1.75rem;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.intro-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.intro-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.badge-icon {
    font-size: 1.1rem;
}

.about-description {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-description.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Technology Showcase */
.technology-showcase {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 1px solid #4a5568;
    position: relative;
    overflow: hidden;
}

.technology-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e63946, #dc2626);
}

.showcase-title {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.tech-item {
    background: #0f1419;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #4a5568;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-item h5 {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.tech-item p {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Certifications */
.certifications {
    background: #1a202c;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    border-left: 4px solid #48bb78;
}

.cert-title {
    color: #e2e8f0;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.cert-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #2d3748;
    border-radius: 8px;
    border: 1px solid #4a5568;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
    border-color: #48bb78;
}

.cert-icon {
    font-size: 1.5rem;
}

.cert-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-item {
    padding: 1.5rem;
    background: #2d3748;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: #1a202c;
    transform: translateX(5px);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.why-item h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-item p {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Values Section */
.values-section .values-title {
    color: #ff6b35;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}

.values-section .values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #2d3748;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.value-content h4 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-content p {
    color: #cbd5e0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Testimonial Section */
.testimonial {
    background: linear-gradient(135deg, #1c2530, #2d3748);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff6b35;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-family: serif;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f3f4f6;
}

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

.author-info h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #e5e7eb;
    margin: 0;
    font-size: 0.95rem;
}

.rating .stars {
    color: #ff6b35;
    font-size: 1.25rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1a202c;
}

/* Contact Hero Image */
.contact-hero {
    margin-bottom: 4rem;
}

.contact-image-container {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-image-container:hover .contact-hero-image {
    transform: scale(1.05);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.85), rgba(28, 37, 48, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-cta {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.contact-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    transition: all 0.3s ease;
}

.contact-stats .stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f3f4f6;
}

.contact-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.contact-info h3 {
    color: #ff6b35;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #2d3748;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #e2e8f0;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #e2e8f0;
}

/* Form Styles */
.form {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Success Message Styles */
.success-message {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
    animation: slideInUp 0.5s ease-out;
}

.success-message h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.success-message p {
    color: #f0fff4;
    margin: 0;
    font-size: 1.1rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #1a202c;
    color: #e2e8f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group select option {
    background: #1a202c;
    color: #e2e8f0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Footer */
.footer {
    background: #0f1419;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid #ff6b35;
}

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

.footer-brand h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
    margin: 0;
}

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

.footer-section h4 {
    color: #f3f4f6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0f1419;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem;
        display: block;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        border-bottom-color: #ff6b35;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .values-section .values-list {
        grid-template-columns: 1fr;
    }

    .intro-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .intro-header h3 {
        min-width: auto;
        margin-bottom: 1rem;
    }

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

    .cert-badges {
        gap: 1rem;
    }

    .cert-badge {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero {
        margin-bottom: 3rem;
    }

    .contact-image-container {
        height: 300px;
    }

    .contact-cta h3 {
        font-size: 2rem;
    }

    .contact-cta p {
        font-size: 1.1rem;
    }

    .contact-stats {
        gap: 1.5rem;
    }

    .contact-stats .stat {
        min-width: 80px;
        padding: 0.75rem;
    }

    .contact-stats .stat-number {
        font-size: 1.5rem;
    }

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

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }

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

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

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

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

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

    .achievement-item {
        padding: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .testimonial blockquote {
        font-size: 1.1rem;
    }

    .technology-showcase {
        padding: 1.5rem;
    }

    .cert-badges {
        flex-direction: column;
        align-items: center;
    }

    .cert-badge {
        width: 100%;
        max-width: 200px;
    }

    .values-section {
        padding: 2rem;
    }

    .values-section .values-title {
        font-size: 1.5rem;
    }

    .contact-image-container {
        height: 250px;
    }

    .contact-cta h3 {
        font-size: 1.75rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .contact-stats {
        gap: 1rem;
    }

    .contact-stats .stat {
        min-width: 70px;
        padding: 0.5rem;
    }

    .contact-stats .stat-number {
        font-size: 1.25rem;
    }

    .contact-stats .stat-label {
        font-size: 0.8rem;
    }
}

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

.service-card,
.stat-item,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}
