/* CSS Reset & Variables */
:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #4d94ff;
    --secondary: #6c757d;
    --accent: #00a8e8;
    --accent-dark: #0086b3;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}


h1 {
    font-size: 3rem;
    padding-top: 20px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.highlight {
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    gap: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    margin: 0;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-top: -5px;
}

.nav ul {
    display: flex;
    list-style: none;
    align-items: flex-start;
    padding: 10px;
    gap: 30px;
}

.nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.nav ul li a.active {
    color: var(--primary);
}

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column; /* ensures vertical column layout */
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
}

/* Hover activation */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Menu Items */
.dropdown-menu li {
    width: 100%;
    margin: 0;
    list-style: none;
}

/* Links inside dropdown */
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark, #333);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

/* Hover Effect: smooth background + accent border + subtle lift */
.dropdown-menu li a:hover {
    background-color: var(--light, #f8f9fa);
    color: var(--primary, #007bff);
    border-left-color: var(--primary, #007bff);
    transform: translateX(4px);
}

/* Optional: make dropdown icon rotate on hover */
.dropdown:hover > a i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%230066cc" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
}

.hero .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-features .feature i {
    color: var(--success);
}

.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    max-width: 280px;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.floating-card:nth-child(1) {
    align-self: flex-end;
}

.floating-card:nth-child(2) {
    align-self: flex-start;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.floating-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.floating-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.floating-card a {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-card a:hover {
    gap: 10px;
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background-color: var(--light);
    border-bottom: 1px solid var(--gray-light);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.trust-bar p {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--gray);
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary);
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
}

.services-overview.detailed {
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.large {
    text-align: left;
    padding: 40px;
}

.service-card.large .service-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card.large .service-icon {
    margin: 0 0 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background-color: var(--light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content h2 {
    margin-bottom: 1.5rem;
}

.why-choose-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.feature-text h3 {
    margin-bottom: 8px;
}

.why-choose-image .image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stats-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Process Section */
.process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--light);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo p {
    color: var(--gray-light);
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #343a40;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
    color: var(--gray);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%230066cc" fill-opacity="0.05" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
}

.page-header h1 {
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Services Navigation */
.services-nav {
    padding: 30px 0;
    background-color: var(--light);
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid var(--gray-light);
}

.services-nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.nav-link:hover, .nav-link.active {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.nav-link i {
    font-size: 2rem;
}

.nav-link span {
    font-weight: 600;
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image .image-container {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-badge {
    background: white;
    color: var(--primary);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge small {
    font-size: 1rem;
    font-weight: 600;
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}

.team-member h3 {
    margin-bottom: 5px;
}

.position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.member-contact a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.member-contact a:hover {
    background-color: var(--primary);
    color: white;
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-item {
    text-align: center;
    padding: 30px 20px;
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.cert-item h3 {
    margin-bottom: 10px;
}

/* Service Detail Page */
.service-detail {
    padding: 100px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-main h2 {
    margin-bottom: 1.5rem;
}

.service-main > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-features-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 10px;
}

.service-sidebar .service-card {
    position: sticky;
    top: 120px;
    text-align: left;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Systems Section */
.systems {
    padding: 100px 0;
    background-color: var(--light);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.system-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.system-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.system-card h3 {
    margin-bottom: 15px;
}

.system-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.system-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.system-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-content h2 {
    margin-bottom: 1.5rem;
}

.benefits-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-item i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.benefits-image .image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background-color: var(--light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.industry-card h3 {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-image {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .floating-card {
        max-width: 250px;
    }
    
    .trust-bar .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .why-choose-grid,
    .benefits-grid,
    .about-grid,
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: -1;
    }
    
    .service-sidebar .service-card {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 30px;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
        background: transparent;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        max-width: 100%;
    }
    
    .services-nav-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-card.large .service-actions {
        flex-direction: column;
    }
    
    .why-choose-image .image-container,
    .benefits-image .image-container {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-nav-links {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .certs-grid,
    .systems-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item,
    .benefit-item,
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}


/* Add these styles to your existing style.css file */

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 20px 0;
    margin-top: 80px;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.emergency-icon {
    font-size: 3rem;
}

.emergency-text h2 {
    color: white;
    margin-bottom: 10px;
}

.emergency-contact {
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.emergency-contact i {
    margin-right: 10px;
}

.emergency-button .btn {
    font-size: 1.1rem;
    padding: 15px 25px;
}

/* Featured Plan Styles */
.system-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary);
    position: relative;
}

.system-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Plan Pricing */
.plan-price {
    margin: 25px 0;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

/* Emergency CTA */
.cta.emergency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.cta.emergency .btn-primary {
    background: white;
    color: #ee5a24;
}

.cta.emergency .btn-primary:hover {
    background: #f8f9fa;
}

.cta.emergency .btn-secondary {
    border-color: white;
    color: white;
}

.cta.emergency .btn-secondary:hover {
    background: white;
    color: #ee5a24;
}

/* Form Enhancements */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Quote Form Specific */
.quote-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.quote-success {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quote-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.quote-success h2 {
    color: var(--success);
    margin-bottom: 15px;
}

/* Service Icons Enhancement */
.service-icon,
.system-icon,
.feature-icon {
    position: relative;
    overflow: hidden;
}

.service-icon::after,
.system-icon::after,
.feature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
}

.social-icons{
    display: flex;
    gap: 5px;
}
.contact-details{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.service-card:hover .service-icon::after,
.system-card:hover .system-icon::after,
.feature:hover .feature-icon::after {
    transform: scale(1);
}

.map-section, .contact-section {
    margin-top: 40px;
    
}


/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .contact-details{
    flex-direction: column;
}
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .emergency-icon {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .system-card.featured {
        transform: none;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .emergency-contact {
        font-size: 1.1rem;
    }
    
    .emergency-button .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    width: 100%;
}

/* Fixed Header */
.header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo h2 {
    color: #0066cc;
    font-size: 1.5rem;
    white-space: nowrap;
}

.highlight {
    color: #004499;
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav a:hover {
    color: #0066cc;
}

.btn {
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9rem;
}

.btn:hover {
    background: #004499;
}

.btn-primary {
    background: #0066cc;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

/* Page Header - Add padding for fixed header */
.page-header {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 100px 0 40px;
    text-align: center;
    margin-top: 0;
    width: 100%;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0066cc;
    padding: 0 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Quote Section */
.quote-section {
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: calc(100% - 30px);
}

.quote-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0066cc;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    width: 100%;
    overflow: hidden;
}


.footer p {
    margin-bottom: 10px;
    padding: 0 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-image{
    width: 100%;
}
.floating-card{
    width: 100%;
    display: flex;
        flex-direction: column;
        align-items: center;
}
.process-step{
    align-items: center;
}
    .header {
        padding: 0.8rem 0;
    }
    
    .header .container {
       
        gap: 0.8rem;
        padding: 0 15px;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    .nav {
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
    }
    
    .nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 100px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .quote-form {
        padding: 20px 15px;
        margin: 0 15px;
        width: calc(100% - 30px);
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 10px;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .page-header {
        padding: 90px 0 20px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .quote-form {
        padding: 15px 10px;
        margin: 0 10px;
        width: calc(100% - 20px);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

