
    /* style.css */
:root {
    --bg-dark: #050a18;
    --accent-blue: #3d85f7;
    --text-white: #ffffff;
    --text-gray: #b0b8c1;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
     background: url('https://media.gettyimages.com/id/1316780025/video/lights-turning-on-in-a-server-room.jpg?s=640x640&k=20&c=o7CJuXVZnUOsADCSfOGBmcELM2PjEgWkXseIIYYdSVI=') no-repeat center center/cover;
    
}

/* Header & Navbackground: radial-gradient(circle at center, #102a5a 0%, #050a18 100%); */
header {
    padding: 20px 50px;
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 14px;
}

/* Buttons */
button {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: white;
}

.btn-filled, .btn-main {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 0 15px rgba(61, 133, 247, 0.4);
}



/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 85vh;
    text-align: center;
    padding: 0 20px;
}

.subtitle {
    letter-spacing: 4px;
    font-size: 12px;
    color: var(--accent-blue);
}

.hero h1 {
    font-size: 80px;
    margin: 10px 0;
    font-weight: 700;
}

.hero p {
    font-size:25px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Badges */
.trust-badges {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    opacity: 0.5;
}

.badge {
    
    border: 1px solid var(--text-gray);
    padding: 15px;
    border-radius: 50%;
    font-size: 10px;
    
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Mobile Responsive Logic */

.mobile-only { display: none; }

@media (max-width: 768px) {
    header { padding: 15px 25px; }

    .hide-mobile { display: none; }
    .mobile-only { display: block; margin-top: 10px; }

    /* Hamburger Icon */
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 110;
    }
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: 0.3s;
        background-color: white;
    }

    /* Transform nav-links into a full-screen mobile overlay */
    .nav-links {
        position: fixed;
        left: -120%; /* Hidden by default */
        top: 0;
        flex-direction: column;
        background: rgba(5, 10, 24, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        gap: 40px;
    }

    .nav-links.active {
        left: 0; /* Slides in when active */
    }

    .nav-links a {
        font-size: 20px;
    }

    /* Hero Section Adjustments */
    .hero h1 { font-size: 45px; }
    .trust-badges { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px;
    }
}




/* Aboutus section on home */
/* --- SECTION 2 SPECIFIC FIXES --- */

.about-section {
    position: relative; 
    z-index: 5;                /* Ensures it stays above the fixed canvas */
    background-color: #ffffff; /* Blocks out the background particles */
    padding: 20px 10%;
    margin-top: 0;             /* Prevents gaps between sections */
    font-family: 'Segoe UI', sans-serif;
}

/* Force dark text color for everything inside this section */
.about-section h2, 
.about-section p, 
.about-section li {
    color: #1a1a1a !important; 
}

.about-section .label {
    display: block;
    color: #4a86e8 !important;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Layout Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Collage Logic */
.image-collage {
    position: relative;
    height: 450px;
}

.main-img-wrapper img {
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overlay-img-wrapper {
    position: absolute;
    bottom: 20px;
    right: 10%;
    width: 55%;
}

.overlay-img-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 6px solid white;
}

/* Stat Box (Blue Gradient) */
.stat-box {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background: linear-gradient(135deg, #5b8dfa, #3b60c4);
    color: white !important; /* Keep this white */
    padding: 20px;
    border-radius: 12px;
    width: 150px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(59, 96, 196, 0.3);
}

.stat-box h3 { 
    font-size: 32px; 
    margin: 0; 
    color: white !important; 
}

.stat-box p { 
    font-size: 12px; 
    margin: 5px 0 0; 
    color: rgba(255,255,255,0.8) !important; 
}

/* Feature List Styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {

    position: absolute;
    left: 0;
    color: #4a86e8;
    font-weight: bold;
    font-size: 18px;
}

.btn-audit {
    background-color: #4a86e8;
    color: white !important;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.btn-audit:hover {
    background-color: #3567c1;
    transform: translateY(-3px);
}

/* Responsive Handling */
@media (max-width: 992px) {
    .content-grid { grid-template-columns: 1fr; }
    .image-collage { height: 400px; margin-bottom: 40px; }
    .overlay-img-wrapper { right: 5%; }
}




/*Services Section*/

.services-section {
    background-color: #0b0f19;
    padding: 100px 8%;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-header p {
    color: #b0b8c1;
    font-size: 16px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #3d85f7;
}

.icon-box {
    background: linear-gradient(135deg, #3d85f7, #1a56b9);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box img {
    width: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: #b0b8c1;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Card Feature List */
.card-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.card-list li {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    opacity: 0.8;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3d85f7;
}



/* --- FOOTER STYLES --- */
.main-footer {
    background-color: #0b0f19; /* Deep dark background */
    padding: 40px 0 0 0;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px 60px 20px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    color: #b0b8c1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Links List */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b8c1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3d85f7; /* Solvix Accent Blue */
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #b0b8c1;
}

.contact-item strong {
    color: #ffffff;
}

.contact-item .icon {
    color: #3d85f7;
    font-size: 18px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #080b13;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}



/*Moving text*/
.scrolling-ticker {
    background: #1a2a4a; /* Dark navy blue from your reference */
    color: #ffffff;
    padding: 15px 0;
    overflow: hidden; /* Hides the text that goes off-screen */
    white-space: nowrap;
    position: relative;
    z-index: 20; /* Ensure it stays above background particles */
}

.ticker-wrapper {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    animation: marquee 30s linear infinite;
}

.ticker-wrapper span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 50px;
}

.ticker-wrapper span:nth-child(even) {
    color: #3d85f7; /* Highlights bullets/dots in blue */
}

/* Moving Animation */
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Pause on hover so users can read it easily */
.scrolling-ticker:hover .ticker-wrapper {
    animation-play-state: paused;
    cursor: pointer;
}



/* Consultation Box */
.consult-box { 
   
    padding: 0%;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 0.2; 
    text-align: center;

    /* Blink effect */
    animation: blink 10s infinite;  /* 1s = speed, infinite = repeat forever */
}

/* Keyframes for blinking */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;   /* visible */
    }
    25%, 75% {
        opacity: 0;   /* invisible */
    }
}


.btn-consult {
    margin: 0;    
    color: #ffff00;
    font-weight: 100;
    font-weight: bold;
    font-style: bold;
    text-decoration: underline;
    text-transform: uppercase;
}


/*contact us page */
/* --- Core Variables --- */
:root {
    --solvix-blue: #3d85f7;
    --solvix-dark: #0b0f19;
    --solvix-white: #ffffff;
    --solvix-gray: #b0b8c1;
    --solvix-light-bg: #f8faff;
}

/* --- Layout Elements --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.custom-about-hero {
    height: 450px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1200') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.95) 0%, rgba(61, 133, 247, 0.3) 100%);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left h1 {
    font-size: 52px;
    margin: 0;
    color: var(--solvix-white);
}

.custom-breadcrumb a {
    color: var(--solvix-blue);
    text-decoration: none;
    font-size: 14px;
}

.custom-breadcrumb span { color: var(--solvix-white); margin: 0 10px; }
.custom-breadcrumb a.active { color: var(--solvix-white); opacity: 0.7; }

.hero-quote {
    color: var(--solvix-white);
    font-style: italic;
    font-size: 24px;
    max-width: 350px;
    text-align: right;
    border-right: 4px solid var(--solvix-blue);
    padding-right: 20px;
}


/*Whatsapp*/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #128c7e;
  }
  
  .whatsapp-float img {
    width: 25px;
    margin-right: 10px;
  }
.whatsbtn{
    
    background-color: #25d366;
    color: white;
}
.whatsbtn:hover {
    transform: scale(1.05);
    background-color: #128c7e;
  }
  .whatsbtn-btn img {
    width: 25px;
    margin-right: 10px;
  }