/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #6b4ef7; /* vibrant purple from logo */
    --accent-color: #12b3a3; /* teal accent from logo */
    --primary-600: #5b3be6;
    --primary-400: #8a6ffb;
    --dark-700: #0f1720;
    --muted: #6b7280;
    --light-bg: #F6F6FF; /* soft background */
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #12b3a3 0%, #6b4ef7 60%);
    --glass: rgba(255,255,255,0.6);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fbfbff 0%, var(--light-bg) 100%);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 24px rgba(18, 19, 24, 0.06);
    padding: 12px 0;
}

.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-width: 120px;
    height: auto;
    width: auto;
}
/* Make images responsive by default */
img, .hero-image img, .brand-logo, .service-image img {
    max-width: 100%;
    height: auto;
}

.nav-link {
    color: var(--dark-700);
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.22s ease;
}

.nav-link:hover {
    color: var(--primary-400);
    transform: translateY(-1px);
}

.contact-btn {
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 12px;
    padding: 10px 22px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(107,78,247,0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(107,78,247,0.18);
}

/* Custom Dropdown */
.custom-dropdown {
    min-width: 280px;
    max-width: 320px;
    padding: 0;
    border: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 12px 28px rgba(99,102,241,0.12);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,255,0.96));
}

.custom-dropdown .dropdown-header {
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 0.85rem;
}

.custom-dropdown .dropdown-item {
    padding: 0.75rem 1.4rem;
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.45;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.custom-dropdown .dropdown-item i {
    width: 20px;
    min-width: 20px;
    text-align: center;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(86, 73, 192, 0.08);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.custom-dropdown .dropdown-item.active,
.custom-dropdown .dropdown-item:focus {
    background-color: rgba(86, 73, 192, 0.08);
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(180deg, rgba(107,78,247,0.12) 0%, rgba(18,179,163,0.04) 100%);
    padding: 100px 0 40px 0;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    color: #061025;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-700);
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons .btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 12px;
    transition: all 0.22s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-secondary {
    color: #555;
    border-color: #ddd;
    background-color: white;
}

.btn-primary:hover {
    background-color: #5649c0;
    transform: translateY(-2px);
}

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

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,96L60,90C120,84,240,72,360,60C480,48,600,36,720,42C840,48,960,72,1080,72C1200,72,1320,48,1380,36L1440,24L1440,120L1380,120C1320,120,1200,120,1080,120C960,120,840,120,720,120C600,120,480,120,360,120C240,120,120,120,60,120L0,120Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 40px 0;
    background-color: white;
}

.brands-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-4px);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-heading {
    text-align: center;
    margin-bottom: 40px;
    color: #5649c0;
    font-size: 32px;
    font-weight: 600;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15,23,32,0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
    pointer-events: none;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -34px auto 0;
    position: relative;
    z-index: 1;
    border: 6px solid #fff;
}

.service-icon img {
    width: 30px;
    height: 30px;
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-title {
    color: var(--primary-600);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ===== ABOUT US SECTION ===== */
.about-us-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.chart-icon,
.chart-stats {
    background-color: #f0f0ff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.chart-icon:hover,
.chart-stats:hover {
    transform: translateY(-5px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(180deg, rgba(107,78,247,0.06), rgba(18,179,163,0.02));
    width: 100%;
    min-height: 100vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.requestAquote-right {
    position: relative;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.contact-info-box {
    font-size: 15px;
    margin-bottom: 1.5rem;
    color: #495057;
    padding: 28px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact h4 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info-box h3 i {
    font-size: 20px;
    margin-right: 10px;
    color: #3498db;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Contact Form */
.form {
    margin: 0 66px 0 30px;
}

.input-text {
    background: 0 0 !important;
    z-index: 3;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #5649c0;
    box-shadow: none !important;
    transition: box-shadow 150ms ease-out;
    padding: 15px 16px;
    width: 100%;
    height: 50px;
    display: block;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px 0;
}

.input-text:focus {
    border-bottom: 1px solid #F3B431;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
}

.input-text.text-area {
    height: 165px;
    resize: none;
    overflow: auto;
}

.input-btn {
    width: 175px;
    height: 50px;
    background: #5649c0;
    border-radius: 0px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: 0px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin-bottom: 15px;
}

.input-btn:hover {
    background: #f3b431;
    color: #fff;
}

.custom-control-label {
    display: inline;
}

.validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#sendmessage {
    color: #5649c0;
    border: 1px solid #5649c0;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#sendmessage.show,
#errormessage.show,
.show {
    display: block;
}

/* Compact Contact Form */
.contactForm .form-group input,
.contactForm .form-group textarea,
.contactForm .input-btn {
    padding: 8px 12px;
    font-size: 14px;
}

.contactForm .form-group textarea {
    height: 100px;
}

.contactForm .input-btn {
    padding: 10px 20px;
}

.contactForm .custom-control-label {
    font-size: 14px;
}

.contactForm .custom-control-input {
    margin-top: -2px;
}

.contactForm .form-group {
    margin-bottom: 10px;
}

.contactForm {
    padding: 20px;
}

/* Social Links */
.social-link {
    padding: 35px 0;
    display: block;
    overflow: hidden;
    list-style: none;
}

.social-link li {
    float: left;
    margin-right: 8px;
}

.social-link li a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    color: #fff;
    background: #20bcbf;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.social-link li a:hover,
.social-link li a:focus {
    text-decoration: none;
}

.twitter a:hover {
    background: #55acee;
}

.linkedin a:hover {
    background: #0077B5;
}

.pinterest a:hover {
    background: #cb2026;
}

.fas.fa-envelope a:hover {
    background: #dd4b39;
}

.dribbble a:hover {
    background: #ea4c89;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0f1720 0%, #07101a 100%);
    padding: 36px 0;
    text-align: center;
    color: rgba(255,255,255,0.85);
}

.footer-logo {
    margin: 0 auto 20px;
    width: 70px;
}

.footer-content {
    padding: 0;
    list-style: none;
}

.footer a {
    text-decoration: none;
    color: #cccccc;
}

.footer a:hover {
    color: var(--primary-400);
}

.btn-text-only {
    border: none;
    background-color: transparent !important;
    display: inline-block;
    position: relative;
    padding: 3px 0px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #5649c0;
}

.copyright,
.credits {
    color: #cccccc;
    font-size: 14px;
    display: block;
    text-align: center;
}

.copyright a {
    color: #cccccc;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.credits a {
    color: #5649c0;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.copyright a:hover,
.credits a:hover,
.btn-text-only:hover {
    color: #5649c0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content p {
        max-width: 100%;
    }

    .contact {
        padding: 40px 0;
    }

    .requestAquote-right {
        padding: 30px;
        margin-top: 30px;
    }

    .contact h2 {
        font-size: 28px;
    }

    .contact h4 {
        font-size: 22px;
    }

    .contact-info-box {
        padding: 15px;
    }

    .custom-dropdown {
        width: 100%;
    }

    .nav-item.dropdown.mx-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .input-btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .form {
        margin: 0 30px;
    }
    .contact h2 {
        font-size: 28px;
    }
    .contact h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .form {
        margin: 0 20px;
    }
    .requestAquote-right {
        padding: 30px 20px;
    }
    .input-text {
        height: 45px;
        font-size: 14px;
    }
    .contact-info-box {
        padding: 20px;
    }
    .contact h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 0;
    }

    .form {
        margin: 0 15px;
    }

    .contact-info-box {
        margin-bottom: 1rem;
    }

    .input-btn {
        width: 100%;
        font-size: 13px;
    }

    .benefits-list li {
        font-size: 14px;
    }
}

/* ===== Theme overrides to match new logo colors ===== */
.btn-primary { background-color: var(--primary-color); border-color: var(--primary-color); }
.btn-primary:hover { background-color: color-mix(in srgb, var(--primary-color) 85%, black 15%); }
.contact-btn { background-color: var(--primary-color); }
.contact-btn:hover { background-color: color-mix(in srgb, var(--primary-color) 85%, black 15%); }
.service-title { color: var(--primary-color); }
.service-icon { background-color: var(--primary-color); }
.custom-dropdown .dropdown-item:hover { color: var(--primary-color) !important; border-left-color: var(--primary-color) !important; }
.navbar-nav .nav-link:hover { color: var(--primary-color) !important; }
.section-title:after { background-color: var(--primary-color); }
.footer a:hover { color: var(--primary-color); }
.credits a { color: var(--primary-color); }
.chart-icon, .chart-stats { background-color: var(--light-bg); }

/* accent color utilities */
.text-accent { color: var(--accent-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; color: #fff; }

/* Secondary CTA and link accents */
.btn-outline-secondary {
    color: var(--accent-color);
    border-color: rgba(18,179,163,0.15);
    background: transparent;
}
.btn-outline-secondary:hover {
    color: #fff;
    background: linear-gradient(90deg, rgba(18,179,163,0.95), rgba(107,78,247,0.8));
    border-color: transparent;
}

/* Focus and accessibility helpers */
a:focus, .btn:focus, .nav-link:focus {
    outline: 3px solid rgba(107,78,247,0.18);
    outline-offset: 2px;
}

/* Ensure footer links are readable */
.footer a { color: rgba(255,255,255,0.85); }



/* ===== Header / Navbar responsive tweaks ===== */
@media (max-width: 991px) {
    .navbar {
        padding: 8px 0;
    }
    .navbar-brand img {
        width: 40px;
    }
    .navbar-brand span {
        display: none;
    }
    .navbar-collapse {
        background: #ffffff;
        padding: 10px 12px;
        border-top: 1px solid rgba(0,0,0,0.04);
    }
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
    }
    .navbar-nav .nav-item {
        margin: 6px 0;
    }
    .navbar-nav .nav-link {
        margin: 0;
        padding: 10px 14px;
        width: 100%;
        border-radius: 12px;
    }
    .nav-item.dropdown .nav-link.dropdown-toggle {
        border: 1px solid rgba(107,78,247,0.18);
        background: rgba(255,255,255,0.95);
    }
    .nav-item.dropdown.show .nav-link.dropdown-toggle {
        background: rgba(107,78,247,0.08);
        border-color: rgba(107,78,247,0.35);
        box-shadow: inset 0 0 0 1px rgba(107,78,247,0.18);
    }
    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0;
        margin-top: 0.5rem;
    }
    .custom-dropdown {
        width: 100% !important;
        max-width: 100%;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.04);
        background: #ffffff;
        border: 1px solid rgba(231,229,255,0.85);
    }
    .custom-dropdown .dropdown-item {
        padding: 10px 14px;
        font-size: 0.95rem;
        border-left: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        background: transparent;
    }
    .custom-dropdown .dropdown-item i {
        width: 18px;
        margin-right: 10px;
    }
    .custom-dropdown .dropdown-item:last-child {
        border-bottom: none;
    }
    .contact-btn {
        width: 100%;
        display: block;
        padding: 10px 14px;
        border-radius: 10px;
        text-align: center;
    }
    .hero-section {
        padding-top: 60px;
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img { width: 34px; }
    .navbar { padding: 6px 0; }
    .hero-section { padding-top: 50px; }
}

/* Desktop: show dropdown on hover for easier navigation */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .dropdown-menu {
        transition: opacity 0.15s ease-in-out;
        opacity: 1;
    }
}

/* ===== Merged from styleCF.css ===== */
.get-in-touch-section .main-content-block {
    width: 45%;
    float: left;
    margin-top: -113px;
    padding-top: 0;
}
.selected .fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.main-content-block {
    text-align: center;
    padding-top: 76px;
}
* {
    word-wrap: break-word;
    font-kerning: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.get-in-touch-section .from-block {
    margin-top: 52px;
}
.rows {
    width: 100%;
    float: left;
}
.get-in-touch-section .from-block .col-md-5 {
    padding: 0;
}
.get-in-touch-section .from-left-block {
    min-height: 420px;
    padding-right: 65px;
}
.get-in-touch-section .from-left-block {
    padding-right: 39px;
    padding-top: 5px;
}

.from-left-block .sparater-block {
    right: 15px;
    left: inherit;
}
.sparater-block {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,.1);
    left: -15px;
    top: 0;
}
.emailid-block.voicemsg {
    background-color: rgba(20,58,88,1);
}
.marT20 {
    margin-top: 20px;
}
.get-in-touch-section .from-left-block .listing-block {
    margin-top: 44px;
}
.get-in-touch-section .from-left-block .listing-block h3 {
    margin: 0;
    font-family: proxima-nova,sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
    letter-spacing: .2px;
}
.get-in-touch-section .from-left-block .listing-block ul {
    width: 100%;
    float: left;
    margin-top: 19px;
}
body, html, ol, ul {
    margin: 0;
    padding: 0;
}
.get-in-touch-section .from-left-block .listing-block ul.bluts li {
    padding-left: 32px;
}
.get-in-touch-section .from-left-block .listing-block ul li {
    list-style: none;
    font-family: proxima-nova,sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #c5d1dd;
    letter-spacing: .4px;
    margin-bottom: 11px;
    padding-left: 42px;
    position: relative;
}
.get-in-touch-section .from-block .col-md-7 {
    padding: 0 0 0 20px;
}

