:root {
    --primary: #0056b3; 
    --dark: #0b1118;
    --accent: #00d2ff;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    color: #ffffff;
    background: 
        url('media/background.jpg') no-repeat center top / cover, 
        url('media/wrapper-1.gif') repeat;
    background-attachment: fixed;
    background-color: var(--dark);
}

header {
    background: rgba(11, 17, 24, 0.95);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px; /* Space between the text and the blue button */
}

.header-details {
    display: flex;
    flex-direction: column; /* Stacks hours over phone number */
    text-align: right;
    font-size: 0.85rem;
    color: #f1f1f1;
    font-weight: 500;
}

.header-details i {
    color: var(--accent);
    margin-right: 5px;
}

/* Mobile Fix: Stack everything in the center if the screen is small */
@media (max-width: 768px) {
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    .header-details {
        text-align: center;
    }
}

.logo img { height: 60px; width: auto; }

.phone-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--accent); /* Glows blue when you hover over it */
}

/* Ensure the icon inside the link stays aligned */
.phone-link i {
    margin-right: 5px;
}

.contact-btn {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--accent);
    transition: 0.3s;
}

.contact-btn:hover { background: var(--accent); color: var(--dark); }

.hero {
    padding: 80px 5% 40px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
    background: transparent; 
}

.hero-logo-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: none;
    backdrop-filter: none;
    border: none;
    width: 100%;
}

.hero-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.5)); 
}

.hero h1 { 
    font-size: 3rem; 
    margin-bottom: 15px; 
    color: #ffffff;
}

.hero p { 
    font-size: 1.2rem; 
    max-width: 800px; 
    margin: 0 auto 30px; 
    color: #f8f9fa; 
}

.hero-content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.hero-expertise-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-logo {
    height: 70px;
    width: auto;
}

.chip-container { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    flex-wrap: wrap; 
}

.chip {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: rgba(30, 35, 45, 0.6); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(40, 45, 55, 0.8);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.3));
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #f1f1f1;
    margin: 0;
}

.about-us {
    padding: 80px 5%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 { font-size: 2.5rem; color: var(--accent); margin-bottom: 30px; }
.about-content p { font-size: 1.15rem; line-height: 1.8; color: #e9ecef; margin-bottom: 20px; }

.certifications {
    padding: 40px 5%;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.cert-grid img { height: 110px; width: auto; border-radius: 5px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }

.brands {
    background: rgba(0, 0, 0, 0.45); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 0; 
    padding: 40px 10%;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.brands h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-grid img {
    background: #ffffff;
    padding: 12px;
    border-radius: 4px;
    height: 65px; 
    width: 140px;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.brand-grid img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background: #ffffff;
}

footer { 
    padding: 60px 5%; 
    text-align: center; 
    background: #000; 
    color: #888; 
}

footer h2 { 
    color: #fff; 
    margin-bottom: 20px;
}

.footer-link {
    color: #f1f1f1;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent);
}

.contact-info i { 
    color: var(--accent); 
    margin-right: 10px; 
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    header { flex-direction: column; gap: 15px; }
}
