:root {
    --primary-color: #2a2a72;
    --secondary-color: #009ffd;
    --dark-color: #232528;
    --light-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Header Styles */
.header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgb(205, 204, 204);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 2rem;
    background-color: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color) !important;
    color: white !important;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2) !important;
}

.contact-form button.cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-info p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: var(--secondary-color);
    min-width: 30px;
}

/* Footer Section */
.footer {
    background-color: var(--primary-color) !important;
    color: white !important;
    position: relative;
    z-index: 1; /* Ensure visibility above particles */
    padding: 3rem 2rem;
    text-align: center;
}

.footer p {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Add text shadow if needed */
.footer p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.social-icons {
    margin-bottom: 1rem;
}

.social-icons a {
    color: white;
    margin: 0 1rem;
    font-size: 1.5rem;
}



/* Remove duplicate * selector and particle-canvas styles */
/* Add this at the top */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0; /* Changed from -1 */
    width: 100%;
    height: 100%;
    background: #0a192f;
}

/* Remove the duplicate * selector at bottom */
/* Keep only this * selector */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Modify header styles */
.header {
    background: rgba(0, 0, 0, 0.8) !important; /* Solid dark overlay */
    position: fixed;
    width: 100%;
    z-index: 3; /* Higher than content */
}

/* Update content sections */
.hero {
    height: 100vh;
    padding-top: 80px;
    background: transparent !important; /* Remove gradient overlay */
    position: relative;
    z-index: 1;
    color: white; /* Ensure text visibility */
}

.services, .why-choose, .contact {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
}

/* Add text shadow for visibility */
.hero-content h1,
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tawk.to Customization */
.tawk-button.tawk-button-right {
    bottom: 20px !important;
    right: 20px !important;
}

.tawk-button.tawk-button-circle {
    background-color: #009ffd !important; /* Your brand color */
    border-radius: 8px !important;
}

.tawk-button.tawk-button-circle:hover {
    background-color: #2a2a72 !important; /* Darker shade */
}

.tawk-minimized-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}
.security-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.logo-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.logo-item span {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.logo-item:hover {
    transform: translateY(-5px);
}


/* Service Features List */
.service-features {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    text-align: left;
}

.service-features li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    line-height: inherit;
}

/* For multi-line items */
.service-features li p {
    display: inline-block;
    margin-left: 0;
    text-indent: 0;
    vertical-align: top;
}
/* Director Quote Section */
.director-quote {
    padding: 4rem 2rem;
    background-color: var(--light-color);
    position: relative;
    z-index: 2; /* Ensure section stays above particles */
}

.director-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Image Container */
.director-image {
    flex: 0 0 150px; /* Fixed width for image container */
}

.director-image img {
    width: 100px; /* Actual image width */
    height: 100px; /* Make it square */
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    object-fit: cover; /* Ensure image fills circle */
}

/* Text Container */
.director-text {
    flex: 1;
  /* Add temporary background for debugging */
  background: rgba(255,0,0,0.1);
  padding: 1rem;
}

blockquote {
    font-size: 1.25rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

blockquote::before {
    content: "“";
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    left: -1.5rem;
    top: -1rem;
}

.director-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.director-info p {
    color: var(--dark-color);
    font-weight: 500;
}


/*why choose us*/
.feature-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #555;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Maintenance Page Text Visibility Fixes */
/* Login Button Styling */
.login-button {
    background: var(--secondary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 15px;
    transition: all 0.3s;
}

.login-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}
/* ===== Premium Tab System ===== */
.premium-tabs {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.tab-nav {
    display: flex;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0 20px;
}

.tab-nav-item {
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-nav-item.active {
    background: rgba(255, 255, 255, 0.7);
}

.tab-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.tab-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tab-indicator {
    height: 3px;
    width: 0;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tab-nav-item.active .tab-indicator {
    width: 100%;
}

.tab-nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

.tab-nav-item:hover .tab-icon {
    transform: translateY(-3px);
}

.tab-nav-item:hover .tab-label {
    color: var(--primary-color);
}

/* ===== Glass Card Content ===== */
.glass-card {
    padding: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.card-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.card-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.card-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* ===== Glow Button ===== */
.glow-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 159, 253, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.glow-button::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: 0.5s;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 159, 253, 0.4);
}

.glow-button:hover::before {
    left: 100%;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
