﻿/*==========================
  GLOBAL CONCTECH STYLE
===========================*/

:root {

    --primary: #EF233C;
    --primary-dark: #c41930;
    --secondary: #111827;
    --finance: #EF233C;
    --gov: #EF233C;
    --light: #fff7f7;
    --white: #ffffff;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: #333;
    overflow-x: hidden;

}

/* Smooth Scroll */

html {
    scroll-behavior: smooth;
}

/* Progress Bar */

#progressBar {

    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #EF233C, #c41930);
    z-index: 999999;

}

/* Loader */

#loader {

    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;

}

.loader-circle {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 6px solid #dbeafe;
    border-top: 6px solid var(--primary);
    animation: spin 1s linear infinite;

}

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.section-header h2 {

    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);

}

.section-header p {

    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;

}

.btn-primary-custom {

    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    padding: 14px 30px;
    font-weight: 600;

}

.btn-primary-custom:hover {

    background: var(--primary-dark);
    color: #fff;

}


/* ==========================
      CONCTECH NAVBAR
========================== */

.conctech-navbar {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    padding: 14px 0;
    transition: .4s;
}

.logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-text h4 {
    font-size: 22px;
    font-weight: 800;
    color: #EF233C;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    font-size: 12px;
    color: #555;
}

.navbar-nav .nav-link {
    color: #1F2937;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: .3s;
}

@media (min-width: 992px) {
    .conctech-navbar .navbar-collapse {
        justify-content: flex-start !important;
        margin-left: 20px;
    }

    .conctech-navbar .navbar-nav .nav-link {
        margin: 0 5px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #EF233C;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background: #EF233C;
    border-radius: 5px;
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Dropdown */

.dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #EF233C;
    color: #fff;
}

/* Buttons */

.consult-btn {
    background: #EF233C;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.consult-btn:hover {
    background: #c41930;
    color: #fff;
}

.whatsapp-btn {
    width: 45px;
    height: 45px;
    margin-left: 10px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.08);
}

/* Sticky Shadow */

.conctech-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

/* Mobile */

@media(max-width:991px) {

    .navbar-nav {
        margin-top: 15px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 12px;
    }

    .dropdown-menu {
        box-shadow: none;
        text-align: center;
    }

}


/* =========================
   CONCTECH FOOTER
========================= */

.conctech-footer {
    background: linear-gradient(145deg, #650b18 0%, #9f1629 52%, #4d0913 100%);
    color: #fff;
    margin-top: 80px;
}

/* CTA */

.footer-cta {
    background: linear-gradient(135deg, #ef233c 0%, #c41930 100%);
    padding: 58px 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.footer-cta h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 0;
}

.footer-cta p {
    color: #e9efff;
    margin-top: 10px;
}

.footer-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 15px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 0 rgba(90, 0, 10, .35), 0 10px 18px rgba(0, 0, 0, .2);
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.footer-btn:hover {
    color: #EF233C;
    transform: translateY(-3px);
    box-shadow: 0 8px 0 rgba(90, 0, 10, .35), 0 14px 22px rgba(0, 0, 0, .24);
}

.footer-btn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 rgba(90, 0, 10, .35), 0 5px 10px rgba(0, 0, 0, .18);
}

/* Main Footer */

.footer-main {
    padding: 75px 0 55px;
}

.footer-logo {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .24);
}

.footer-main h3 {
    color: #fff;
    font-weight: 700;
}

.footer-main h4 {
    color: #ffb4bc;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-main p {
    color: #d1d9ef;
    line-height: 1.8;
}

/* Links */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d9ef;
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
}

.footer-links a:hover {
    color: #ffb4bc;
    padding-left: 8px;
}

/* Contact */

.footer-contact p {
    margin-bottom: 14px;
}

.footer-contact i {
    color: #ff6978;
    margin-right: 10px;
}

/* Social */

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .25);
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.social-icons a:hover {
    background: #ef233c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 7px 0 rgba(0, 0, 0, .25);
}

/* WhatsApp Button */

.whatsapp-footer {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 0 #168f46, 0 10px 18px rgba(0, 0, 0, .2);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.whatsapp-footer:hover {
    color: #fff;
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #168f46, 0 14px 22px rgba(0, 0, 0, .24);
}

.whatsapp-footer:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #168f46, 0 5px 10px rgba(0, 0, 0, .18);
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    color: #cfd8e3;
    font-size: 14px;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* Back Top */

#backTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #EF233C;
    color: #fff;
    display: none;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

#backTop:hover {
    background: #c41930;
    transform: translateY(-3px);
    box-shadow: 0 13px 24px rgba(0, 0, 0, .3);
}

#backTop:active {
    transform: translateY(2px);
}

#backTop.show {
    display: block;
}

@media (max-width: 767.98px) {
    .footer-cta {
        padding: 42px 0;
    }

    .footer-cta h2 {
        font-size: 28px;
    }

    .footer-main {
        padding: 55px 0 35px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        margin-top: 8px;
        text-align: center !important;
    }

    .floating-whatsapp {
        left: 15px;
        bottom: 15px;
    }

    #backTop {
        right: 15px;
        bottom: 15px;
    }
}


/* ======================================
   CONCTECH PREMIUM HERO SECTION
====================================== */

.hero-section {
    background: linear-gradient(135deg, #EF233C 0%, #c41930 40%, #111827 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -250px;
    right: -180px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .15);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    display: block;
    color: #fff5f5;
    font-size: 30px;
    margin-top: 10px;
}

.hero-text {
    font-size: 18px;
    color: #E5ECFF;
    margin-top: 25px;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-tags span {
    background: #ffffff18;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.hero-tags i {
    color: #fff5f5;
    margin-right: 6px;
}

.hero-section {
    background: linear-gradient(135deg, #EF233C 0%, #c41930 40%, #111827 100%) !important;
    color: #fff !important;
    min-height: 700px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    z-index: 1;
}

/* Buttons */
.hero-btn-primary {
    background: #fff;
    color: #c41930;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
}

.hero-btn-primary:hover {
    background: #ffe5e7;
    color: #c41930;
}

.hero-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    margin-left: 10px;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #c41930;
}

/* Image */
.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

/* Floating Cards */
.floating-box {
    position: absolute;
    background: #fff;
    color: #111;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}

.box1 {
    top: 20px;
    left: -25px;
}

.box2 {
    top: 180px;
    right: -20px;
}

.box3 {
    bottom: 120px;
    left: -10px;
}

.box4 {
    bottom: 20px;
    right: 20px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Trust */
.trust-box {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 28px;
    color: #fff5f5;
}

.trust-item strong {
    display: block;
}

.trust-item small {
    color: #dbeafe;
}

/* Stats */
.hero-stats-section {
    background: #F8FAFC;
    padding: 60px 0;
    margin-top: -40px;
}

.stats-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.stats-card:hover {
    transform: translateY(-8px);
}

.stats-card i {
    font-size: 36px;
    color: #EF233C;
    margin-bottom: 15px;
}

.stats-card h2 {
    color: #EF233C;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Responsive */
@media(max-width:768px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-title span {
        font-size: 22px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-btn-outline {
        margin-left: 0;
    }

    .floating-box {
        display: none;
    }

    .hero-section {
        padding: 80px 0 40px;
    }

}


/* =====================================
      CONCTECH FOUNDER SECTION
====================================== */

.founder-section {
    background: #ffffff;
    padding: 100px 0;
}

.founder-image-box {
    position: relative;
    text-align: center;
}

.founder-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #EF233C;
    color: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(196, 25, 48, .35);
}

.experience-badge h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.experience-badge span {
    font-size: 14px;
}

.founder-title {
    font-size: 44px;
    font-weight: 800;
    color: #0F172A;
    margin-top: 15px;
}

.founder-role {
    color: #EF233C;
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-text {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

/* Vision Cards */

.vision-card {
    background: #EFF6FF;
    padding: 25px;
    border-radius: 20px;
    height: 100%;
}

.vision-card i {
    font-size: 34px;
    color: #EF233C;
    margin-bottom: 15px;
}

.vision-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.vision-card.mission {
    background: #ECFDF5;
}

.vision-card.mission i {
    color: #EF233C;
}

/* Highlight List */

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-item {
    background: #F8FAFC;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    color: #333;
}

.highlight-item i {
    color: #EF233C;
    margin-right: 10px;
}

/* Buttons */

.founder-btn-outline {
    border: 2px solid #EF233C;
    color: #EF233C;
    border-radius: 40px;
    padding: 12px 28px;
    margin-left: 10px;
}

.founder-btn-outline:hover {
    background: #EF233C;
    color: #fff;
}

/* Mobile */

@media(max-width:768px) {

    .founder-title {
        font-size: 34px;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }

    .founder-btn-outline {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
    }

}


/* ===== CONCTECH ABOUT SECTION ===== */

.about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f8 0%, #f8fbff 55%, #eef4ff 100%);
    padding: 90px 0;
}

.about .col-lg-6 {
    padding: 0 12px;
}

.about .row {
    position: relative;
    align-items: flex-start !important;
}

.about-tag {
    display: inline-block;
    color: #EF233C;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.15;
    max-width: 620px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 680px;
}

.about-img {
    position: relative;
    padding: 0 18px 18px 0;
    height: auto !important;
}

.about-img img {
    display: block;
    width: 100%;
    height: 100% !important;
    min-height: 420px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 18px 18px 0 rgba(239, 35, 60, .12), 0 18px 35px rgba(15, 23, 42, .16);
}

.about-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #EF233C;
    color: #fff;
    padding: 15px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .2);
}

.about-badge h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .9);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
    border: 1px solid rgba(239, 35, 60, .08);
    min-height: 86px;
}

.highlight-box:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 35, 60, .25);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
}

.highlight-box i {
    font-size: 28px;
    color: #EF233C;
}

.highlight-box h5 {
    margin-bottom: 3px;
    font-size: 17px;
    font-weight: 700;
}

.highlight-box span {
    color: #666;
    font-size: 14px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    max-width: 700px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.45;
}

.point-item i {
    color: #EF233C;
}

@media(max-width:768px) {

    .about {
        padding: 60px 0;
    }

    .about-img img {
        min-height: 300px;
        box-shadow: 10px 10px 0 rgba(239, 35, 60, .12), 0 12px 24px rgba(15, 23, 42, .14);
    }

    .about-img {
        padding-right: 10px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-badge {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

}


/* ==========================================
   CONCTECH CORE SERVICES
========================================== */

.about-section {
    background: linear-gradient(135deg, #fff8f9 0%, #f8fbff 52%, #eef4ff 100%);
    padding: 90px 0;
}

.about-image {
    position: relative;
    padding-right: 18px;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    min-height: 510px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 18px 18px 0 rgba(239, 35, 60, .12), 0 18px 35px rgba(15, 23, 42, .15);
}

.about-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: linear-gradient(135deg, #EF233C, #d90429);
    color: #fff;
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(239, 35, 60, .22);
    max-width: 220px;
}

.about-badge h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.about-badge p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .9);
}

.experience-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .96);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
    max-width: 280px;
}

.experience-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 35, 60, .08);
    color: #EF233C;
    font-size: 22px;
}

.experience-card h6 {
    margin: 0 0 3px;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.experience-card span {
    display: block;
    font-size: .78rem;
    color: #64748b;
}

.about-content {
    padding-left: 10px;
}

.about-tag {
    display: inline-block;
    color: #EF233C;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-title span {
    color: #EF233C;
}

.about-description {
    color: #475569;
    line-height: 1.8;
    font-size: 1.04rem;
    margin-bottom: 16px;
}

.about-description strong {
    color: #0F172A;
}

.about-section .service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .06);
    height: 100%;
}

.about-section .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.about-section .service-icon.blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.about-section .service-icon.green {
    background: linear-gradient(135deg, #16a34a, #4ade80);
}

.about-section .service-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.about-section .service-icon.red {
    background: linear-gradient(135deg, #ef233c, #fb7185);
}

.about-section .service-card h6 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

.about-section .service-card small {
    color: #64748b;
    display: block;
    line-height: 1.5;
}

.about-section .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    height: 100%;
}

.about-section .trust-item i {
    color: #EF233C;
    font-size: 18px;
}

.about-section .trust-item span {
    color: #0F172A;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-section .btn {
    transition: .3s ease;
}

@media (max-width: 991.98px) {
    .about-content {
        padding-left: 0;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image {
        padding-right: 10px;
    }

    .about-image img {
        min-height: 360px;
        box-shadow: 10px 10px 0 rgba(239, 35, 60, .12), 0 12px 24px rgba(15, 23, 42, .12);
    }

    .about-badge {
        left: 12px;
        bottom: 12px;
        max-width: 170px;
        padding: 12px 14px;
    }

    .experience-card {
        right: 12px;
        bottom: 12px;
        max-width: 220px;
        padding: 12px 14px;
    }
}

.core-services {
    background: #f8fbff;
}

.service-card {
    padding: 35px;
    border-radius: 25px;
    color: #fff;
    height: 100%;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.development-card {
    background: linear-gradient(135deg, #EF233C 0%, #ff5a5f 100%);
}

.finance-card {
    background: linear-gradient(135deg, #0f7a3a 0%, #16a34a 100%);
}

.gov-card {
    background: linear-gradient(135deg, #0f172a 0%, #0057FF 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #f4f4f4;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.service-list i {
    color: #fff5f5;
    margin-right: 10px;
}

.service-btn {
    display: inline-block;
    background: rgba(17, 24, 39, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

.service-btn:hover {
    color: #fff;
    background: rgba(17, 24, 39, 0.28);
}

/* Development Section */

.development-section {
    background: #fff;
}

.feature-box {
    background: #F8FAFC;
    padding: 18px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.feature-box:hover {
    background: #EF233C;
    color: #fff;
}

.feature-box:hover i {
    color: #fff;
}

.feature-box i {
    font-size: 28px;
    color: #EF233C;
    margin-bottom: 12px;
}

.feature-box h5 {
    font-size: 16px;
    font-weight: 700;
}


/* ================= DEVELOPMENT PAGE ================= */

.dev-hero {
    background: linear-gradient(135deg, #EF233C, #7d0f1f);
    color: #fff;
}

.dev-hero h1 {
    font-size: 55px;
    font-weight: 800;
}

.dev-hero .hero-tag {
    background: #ffffff22;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.dev-hero .hero-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 25px 0;
}

.hero-buttons .btn {
    border-radius: 40px;
    margin-right: 10px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-features span {
    background: #ffffff18;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
}

.hero-features i {
    color: #fff5f5;
}

/* WHY SECTION */

.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card i {
    font-size: 40px;
    color: #EF233C;
    margin-bottom: 15px;
}

/* SERVICES */

.development-services {
    background: #F8FBFF;
}

.dev-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.dev-card:hover {
    transform: translateY(-8px);
    border-bottom: 5px solid #EF233C;
}

.dev-card i {
    font-size: 38px;
    color: #EF233C;
    margin-bottom: 20px;
}

.dev-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* TECHNOLOGY SECTION */

.technology-section {
    background: #F8FBFF;
}

.tech-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid #EF233C;
}

.tech-card i {
    font-size: 45px;
    color: #EF233C;
    margin-bottom: 15px;
}

.tech-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.tech-card span {
    color: #666;
    font-size: 14px;
}


.industry-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.industry-card:hover {
    background: #EF233C;
    color: #fff;
}

.industry-card:hover i {
    color: #fff5f5;
}

.industry-card i {
    font-size: 38px;
    color: #EF233C;
    margin-bottom: 15px;
}


.process-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    position: relative;
    transition: .3s;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #EF233C;
    font-weight: 800;
    font-size: 22px;
}

.process-card i {
    font-size: 42px;
    color: #EF233C;
    margin-bottom: 18px;
}


.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content span {
    color: #EF233C;
    font-size: 13px;
    font-weight: 600;
}

.portfolio-content h5 {
    margin: 10px 0;
    font-weight: 700;
}

.portfolio-content a {
    color: #EF233C;
    font-weight: 600;
    text-decoration: none;
}

/*=========================
  CONCTECH PORTFOLIO
==========================*/

.portfolio-section {
    background: #F8FBFF;
}

.section-tag {
    color: #EF233C;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-filter button {

    border: none;
    background: #fff;
    padding: 12px 22px;
    margin: 6px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

}

.portfolio-filter button.active,
.portfolio-filter button:hover {

    background: #EF233C;
    color: #fff;

}

/* Card */

.portfolio-card {

    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;

}

.portfolio-card:hover {

    transform: translateY(-8px);

}

.portfolio-image {

    position: relative;
    overflow: hidden;

}

.portfolio-image img {

    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;

}

.portfolio-card:hover img {

    transform: scale(1.08);

}

/* Overlay */

.portfolio-overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: .35s;

}

.portfolio-card:hover .portfolio-overlay {

    opacity: 1;

}

.project-category {

    background: #fff5f5;
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;

}

.view-btn {

    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF233C;
    text-decoration: none;

}

/* Content */

.portfolio-content {

    padding: 24px;

}

.portfolio-type {

    color: #EF233C;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

}

.portfolio-content h4 {

    margin: 12px 0;
    font-weight: 700;
    color: #0F172A;

}

.portfolio-content p {

    color: #666;
    line-height: 1.7;
    font-size: 15px;

}

.portfolio-link {

    color: #EF233C;
    text-decoration: none;
    font-weight: 700;

}

.portfolio-link i {

    margin-left: 8px;
    transition: .3s;

}

.portfolio-link:hover i {

    margin-left: 14px;

}

/* CTA */

.portfolio-main-btn {

    background: #EF233C;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;

}

.portfolio-main-btn:hover {

    background: #c41930;
    color: #fff;

}


.dev-cta {
    background: linear-gradient(135deg, #EF233C, #111827);
    color: #fff;
}

.dev-cta h2 {
    font-size: 40px;
    font-weight: 800;
}

.dev-cta p {
    color: #DCE8FF;
    margin-top: 15px;
}


/* ================= FAQ SECTION ================= */

.faq-section {
    background: #F8FBFF;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.faq-section .accordion-button {
    font-weight: 700;
    color: #0F172A;
    padding: 20px;
    background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #EF233C;
    color: #fff;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 20px;
    line-height: 1.8;
    color: #555;
}



/* ================= FINANCE PAGE ================= */

.finance-hero {
    background: linear-gradient(135deg, #0f7a3a 0%, #16a34a 50%, #14532d 100%);
    color: #fff;
}

.finance-hero h1 {
    font-size: 52px;
    font-weight: 800;
}

.finance-about {
    background: #fff;
}

.finance-highlight {
    background: #F0FDF4;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: .3s;
}

.finance-highlight:hover {
    background: #16a34a;
    color: #fff;
}

.finance-highlight i {
    font-size: 30px;
    color: #16a34a;
    margin-bottom: 10px;
}

.finance-highlight:hover i {
    color: #fff;
}

/* Finance Cards */

.finance-services {
    background: #F8FBFF;
}

.finance-services .finance-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.finance-card:hover {
    transform: translateY(-8px);
    border-bottom: 5px solid #16a34a;
}

.finance-card i {
    font-size: 40px;
    color: #16a34a;
    margin-bottom: 18px;
}

/* Why Finance */

.why-finance-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.why-finance-card:hover {
    transform: translateY(-8px);
}

.why-finance-card i {
    font-size: 38px;
    color: #EF233C;
    margin-bottom: 15px;
}


.loan-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.loan-card:hover {
    transform: translateY(-8px);
    border-top: 5px solid #16a34a;
}

.loan-card i {
    font-size: 42px;
    color: #16a34a;
    margin-bottom: 18px;
}

.loan-info {
    border-top: 1px solid #E5E7EB;
    margin-top: 20px;
    padding-top: 15px;
}

.insurance-card {
    background: #F0FDF4;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    transition: .3s;
    height: 100%;
}

.insurance-card:hover {
    background: #16a34a;
    color: #fff;
}

.insurance-card:hover i {
    color: #fff;
}

.insurance-card i {
    font-size: 40px;
    color: #16a34a;
    margin-bottom: 15px;
}


.credit-section {
    background: #f0fdf4;
}

.credit-list {
    list-style: none;
    padding: 0;
}

.credit-list li {
    margin-bottom: 12px;
    font-weight: 600;
}

.credit-list i {
    color: #16a34a;
    margin-right: 10px;
}


.timeline-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    position: relative;
    height: 100%;
}

.timeline-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-card i {
    font-size: 36px;
    color: #16a34a;
    margin-bottom: 15px;
}

.finance-form {
    background: linear-gradient(135deg, #14532d, #16a34a);
}

.finance-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.finance-form .form-control,
.finance-form .form-select {
    border-radius: 12px;
    padding: 14px;
}

.finance-submit-btn {
    background: #16a34a;
    color: #fff;
    padding: 14px;
    border-radius: 40px;
    font-weight: 700;
}

.finance-submit-btn:hover {
    background: #0f7a3a;
    color: #fff;
}


/* ================= GOVERNMENT PAGE ================= */

.gov-hero {
    background: linear-gradient(135deg, #c41930, #EF233C, #111827);
    color: #fff;
}

.gov-services {
    background: #F8FBFF;
}

.gov-service-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.gov-service-card:hover {
    transform: translateY(-8px);
    border-bottom: 5px solid #EF233C;
}

.gov-service-card i {
    font-size: 40px;
    color: #EF233C;
    margin-bottom: 15px;
}

.company-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    height: 100%;
}

.gov-highlight {
    background: #FFF7ED;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.gov-highlight i {
    color: #EF233C;
    font-size: 32px;
}

.registration-form {
    background: linear-gradient(135deg, #EF233C, #EF233C);
}

.registration-box {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
}

.gov-submit-btn {
    background: #EF233C;
    color: #fff;
    padding: 14px;
    border-radius: 40px;
    font-weight: 700;
}

.gov-submit-btn:hover {
    background: #c41930;
    color: #fff;
}


/* Shared 3D treatment for clickable controls */
.btn,
button,
.nav-cta,
.hero-btn,
.service-btn,
.job-btn,
.footer-btn,
.consult-btn,
.whatsapp-btn,
.newsletter-btn,
.submit-btn,
.view-btn,
.portfolio-main-btn,
.founder-btn-outline,
.btn-download,
.finance-submit-btn,
.gov-submit-btn {
    position: relative;
    box-shadow: 0 5px 0 rgba(0, 0, 0, .22), 0 9px 16px rgba(0, 0, 0, .16);
    transform: translateY(0);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn:hover,
button:hover,
.nav-cta:hover,
.hero-btn:hover,
.service-btn:hover,
.job-btn:hover,
.footer-btn:hover,
.consult-btn:hover,
.whatsapp-btn:hover,
.newsletter-btn:hover,
.submit-btn:hover,
.view-btn:hover,
.portfolio-main-btn:hover,
.founder-btn-outline:hover,
.btn-download:hover,
.finance-submit-btn:hover,
.gov-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, .22), 0 14px 20px rgba(0, 0, 0, .18);
}

.btn:active,
button:active,
.nav-cta:active,
.hero-btn:active,
.service-btn:active,
.job-btn:active,
.footer-btn:active,
.consult-btn:active,
.whatsapp-btn:active,
.newsletter-btn:active,
.submit-btn:active,
.view-btn:active,
.portfolio-main-btn:active,
.founder-btn-outline:active,
.btn-download:active,
.finance-submit-btn:active,
.gov-submit-btn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, .22), 0 4px 8px rgba(0, 0, 0, .14);
}



/* ================= ABOUT CONCTECH ================= */

#about {
    background: #f8fafc;
    padding: 90px 0;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    transition: .5s;
}

.about-img img:hover {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #ff2d55, #d90429);
    color: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    min-width: 170px;
}

.about-badge h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.about-badge span {
    font-size: 14px;
}

.about-tag {
    color: #e60023;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Feature Cards */

.highlight-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: .4s;
    height: 100%;
}

.highlight-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
    border-color: #ff2d55;
}

.highlight-box i {
    font-size: 28px;
    min-width: 45px;
}

.highlight-box h5 {
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 700;
}

.highlight-box span {
    font-size: 14px;
    color: #64748b;
}

/* Points */

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
}

.point-item i {
    color: #ff2d55;
    font-size: 18px;
}

/* Buttons */

.btn-primary {
    background: #ff2d55;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
}

.btn-primary:hover {
    background: #d90429;
}

.btn-outline-primary {
    border: 2px solid #ff2d55;
    color: #ff2d55;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #ff2d55;
    color: #fff;
}

/* Mobile */

@media(max-width:768px) {

    .about-content h2 {
        font-size: 32px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;
        padding: 15px;
    }

}

.career-hero {
    background: linear-gradient(135deg, #0057FF, #001F5C);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -120px;
    right: -120px;
}

.career-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.career-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.2;
}

.career-hero h1 span {
    color: #FFD54A;
}

.career-hero p {
    color: #D6E5FF;
    font-size: 18px;
    line-height: 1.8;
}

.career-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-career-primary {
    background: #FFD54A;
    color: #111;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
}

.btn-career-primary:hover {
    background: #FFC107;
    color: #111;
}

.btn-career-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
}

.btn-career-outline:hover {
    background: #fff;
    color: #0057FF;
}

.career-image {
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Statistics */
.career-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 18px;
    text-align: center;
}

.stat-card h3 {
    font-size: 34px;
    color: #FFD54A;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-card span {
    color: #E4ECFF;
    font-size: 14px;
}

/* Mobile Responsive */
@media(max-width:768px) {

    .career-hero {
        padding: 90px 0 60px;
        text-align: center;
    }

    .career-hero h1 {
        font-size: 38px;
    }

    .career-buttons {
        justify-content: center;
    }

    .career-stats {
        grid-template-columns: 1fr 1fr;
    }
}


/* ==========================================
   WHY WORK AT CONCTECH
========================================== */

.why-conctech {
    background: #F8FBFF;
}

.section-tag {
    display: inline-block;
    background: #EAF2FF;
    color: #0057FF;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 15px;
}

.why-conctech .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.why-conctech .section-header p {
    max-width: 720px;
    margin: auto;
    color: #64748B;
    line-height: 1.8;
}

/* Benefit Cards */
.benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #0057FF;
    box-shadow: 0 18px 35px rgba(0, 87, 255, .15);
}

.benefit-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0057FF, #2F80ED);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    color: #fff;
    font-size: 36px;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748B;
    line-height: 1.7;
    font-size: 15px;
}

/* Highlight CTA */
.career-highlight {
    background: linear-gradient(135deg, #0057FF, #001F5C);
    color: #fff;
    border-radius: 30px;
    padding: 45px;
}

.career-highlight h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.career-highlight p {
    color: #DCE8FF;
    margin-bottom: 0;
    line-height: 1.8;
}

.btn-highlight {
    background: #FFD54A;
    color: #111;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
}

.btn-highlight:hover {
    background: #FFC107;
    color: #111;
}

/* Mobile */
@media(max-width:768px) {

    .why-conctech .section-header h2 {
        font-size: 32px;
    }

    .career-highlight {
        padding: 30px 25px;
        text-align: center;
    }

    .career-highlight h3 {
        font-size: 26px;
    }
}

/* ==========================================
   OPEN POSITIONS SECTION
========================================== */

.career-jobs {
    background: #ffffff;
}

.career-jobs .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
}

.career-jobs .section-header p {
    max-width: 700px;
    margin: auto;
    color: #64748B;
    line-height: 1.8;
}

/* Job Card */
.job-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s ease;
    border-top: 5px solid #0057FF;
    position: relative;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 87, 255, .15);
}

/* Badge */
.job-type-wrap {
    display: flex;
    justify-content: flex-end;
}

.job-type {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.full-time {
    background: #DBEAFE;
    color: #1D4ED8;
}

.internship {
    background: #DCFCE7;
    color: #15803D;
}

/* Icon */
.job-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #EEF4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.job-icon i {
    font-size: 36px;
    color: #0057FF;
}

/* Title */
.job-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
}

/* Details */
.job-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.job-details li {
    margin-bottom: 12px;
    color: #475569;
    font-size: 15px;
}

.job-details i {
    color: #0057FF;
    width: 24px;
}

/* Skills */
.job-skills {
    background: #F8FBFF;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.job-skills h6 {
    color: #0057FF;
    font-weight: 700;
    margin-bottom: 10px;
}

.job-skills p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Button */
.job-btn {
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    background: #0057FF;
    color: #fff;
    font-weight: 700;
    border: none;
}

.job-btn:hover {
    background: #003FC0;
    color: #fff;
}

/* Mobile */
@media(max-width:768px) {

    .career-jobs .section-header h2 {
        font-size: 32px;
    }

    .job-card {
        padding: 25px;
    }
}

/* ==========================================
   CONCTECH CAREER APPLICATION FORM
========================================== */

.career-apply-section {
    background: #F8FBFF;
}

.career-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.form-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: #0F172A;
}

.form-header p {
    color: #64748B;
    margin-bottom: 30px;
}

/* Left Side Benefits */

.apply-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #334155;
}

.apply-benefit i {
    color: #16A34A;
    font-size: 20px;
}

/* Labels */

.career-form-box label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

/* Input Group */

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0057FF;
    font-size: 16px;
}

.input-group-custom .form-control {
    padding: 14px 16px 14px 48px;
    border-radius: 14px;
    border: 1px solid #D1D5DB;
    background: #fff;
}

.input-group-custom .form-control:focus {
    border-color: #0057FF;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, .15);
}

/* Textarea */

.career-form-box textarea.form-control {
    border-radius: 14px;
    padding: 16px;
}

/* Resume Upload */

.resume-upload-box {
    border: 2px dashed #0057FF;
    background: #EEF4FF;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.resume-upload-box i {
    font-size: 42px;
    color: #0057FF;
    margin-bottom: 15px;
}

.resume-upload-box h5 {
    font-weight: 700;
}

.resume-upload-box p {
    color: #64748B;
    font-size: 14px;
}

/* Submit Button */

.career-submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #0057FF, #0038A8);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.career-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 87, 255, .25);
}

.career-submit-btn i {
    margin-right: 10px;
}

/* Checkbox */

.form-check-label {
    color: #475569;
    font-size: 14px;
}

/* Mobile */

@media(max-width:768px) {

    .career-form-box {
        padding: 25px;
    }

    .form-header h3 {
        font-size: 24px;
    }

}


/* ==========================================
   CAREER SUCCESS POPUP
========================================== */

.career-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.career-modal.active {
    display: flex;
    animation: fadeIn .3s ease;
}

.career-modal-box {
    background: #fff;
    width: 420px;
    max-width: 92%;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    animation: popupScale .35s ease;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #16A34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    color: #fff;
    font-size: 42px;
}

.career-modal-box h2 {
    color: #0057FF;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.career-modal-box p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
}

.career-ok-btn {
    background: linear-gradient(135deg, #0057FF, #003BB5);
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 17px;
    transition: .3s;
}

.career-ok-btn:hover {
    background: #003BB5;
    transform: translateY(-2px);
}

@keyframes popupScale {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* ================= TEAM PAGE ================= */

.team-hero {
    background: linear-gradient(rgba(0, 45, 98, .85), rgba(0, 45, 98, .85)),
        url("../img/team-bg.jpg") center center/cover;
    padding: 120px 0;
}

.team-hero h1 {
    font-size: 52px;
    font-weight: 700;
}

.team-hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
}

.title-small {
    color: #0d6efd;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.team-count-box {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.team-count-box h3 {
    color: #0d6efd;
    font-weight: 700;
}

/* Cards */

.team-card-new {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    height: 100%;
}

.team-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, .25);
}

.team-image {
    padding: 35px 0 20px;
}

.team-image img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #0d6efd;
    box-shadow: 0 0 25px rgba(13, 110, 253, .3);
}

.team-info {
    padding: 0 30px 35px;
}

.department {
    display: inline-block;
    background: #eaf3ff;
    color: #0d6efd;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.team-info p {
    color: #666;
    min-height: 75px;
}

.team-social {
    margin-top: 20px;
}

.team-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f6ff;
    color: #0d6efd;
    margin: 0 5px;
    transition: .3s;
}

.team-social a:hover {
    background: #0d6efd;
    color: #fff;
}

/* CTA */

.team-cta {
    background: linear-gradient(90deg, #0d6efd, #003b8e);
}

.team-cta h2 {
    font-weight: 700;
}

.team-cta p {
    opacity: .9;
}

/* Responsive */

@media(max-width:768px) {

    .team-hero {
        padding: 80px 0;
    }

    .team-hero h1 {
        font-size: 34px;
    }

    .team-image img {
        width: 140px;
        height: 140px;
    }

}


/* ===========================
   CONCTECH Premium Contact
=========================== */

.contact-section {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 90px 0;
    color: #fff;
}

.contact-tag {
    display: inline-block;
    background: #00C6FF;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info p {
    color: #d6d6d6;
    margin-bottom: 35px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.info-box i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #00C6FF;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.info-box h6 {
    color: #ffffff;
    margin-bottom: 3px;
    font-weight: 600;
}

.info-box span {
    color: #d0d7e3;
    font-size: 15px;
}

/* Form Card */

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    color: #0f172a;
    font-weight: 700;
}

.custom-input {
    border-radius: 12px;
    border: 1px solid #dbe4f0;
    padding: 14px 16px;
    transition: .3s;
    box-shadow: none;
}

.custom-input:focus {
    border-color: #00C6FF;
    box-shadow: 0 0 10px rgba(0, 198, 255, .25);
}

.contact-btn {
    background: #00C6FF;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #008ECC;
    color: #fff;
    transform: translateY(-2px);
}

@media(max-width:768px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-card {
        padding: 25px;
    }

}

/* ================= PROJECT PAGE ================= */

#portfolio {
    background: #f8fafc;
    padding: 90px 0 30px;
}

#portfolio .section-header {
    margin-bottom: 35px;
}

#portfolio .section-header p {
    color: #ef233c;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

#portfolio .section-header h2 {
    color: #111827;
    margin-bottom: 0;
}

#portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
}

#portfolio-filter li {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    color: #374151;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

#portfolio-filter li:hover,
#portfolio-filter li.filter-active {
    background: #ef233c;
    border-color: #ef233c;
    color: #fff;
    transform: translateY(-2px);
}

#portfolio .portfolio-item {
    margin-bottom: 24px;
}

#portfolio .portfolio-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
    height: 100%;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

#portfolio .portfolio-wrap:hover {
    box-shadow: 0 18px 35px rgba(15, 23, 42, .14);
    transform: translateY(-6px);
}

#portfolio .portfolio-img {
    aspect-ratio: 16 / 10;
    background: #e5e7eb;
    overflow: hidden;
}

#portfolio .portfolio-img img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

#portfolio .portfolio-wrap:hover .portfolio-img img {
    transform: scale(1.05);
}

#portfolio .portfolio-text {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 18px 20px;
}

#portfolio .portfolio-text h3 {
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    margin: 0;
}

#portfolio .portfolio-text a {
    align-items: center;
    background: #ef233c;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 24px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 3px;
    text-decoration: none;
    width: 38px;
}

@media (max-width: 575.98px) {
    #portfolio {
        padding-top: 55px;
    }

    #portfolio-filter li {
        font-size: 13px;
        padding: 8px 14px;
    }

    #portfolio .portfolio-text h3 {
        font-size: 16px;
    }
}

/* ================= SHARED RESPONSIVE SAFETY ================= */

img,
svg,
video {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .conctech-navbar .container {
        align-items: center;
        flex-wrap: wrap;
    }

    .conctech-navbar .navbar-brand {
        max-width: calc(100% - 55px);
    }

    .conctech-navbar .navbar-toggler {
        flex: 0 0 auto;
    }

    .conctech-navbar .navbar-collapse {
        flex-basis: 100%;
    }

    .dev-hero .row,
    .finance-hero .row,
    .gov-hero .row {
        min-height: auto !important;
    }

    .dev-hero,
    .finance-hero,
    .gov-hero {
        padding: 75px 0 !important;
    }

    .dev-hero h1,
    .finance-hero h1,
    .gov-hero h1 {
        font-size: clamp(34px, 6vw, 48px);
        line-height: 1.2;
    }

    .dev-hero .col-lg-6:last-child,
    .finance-hero .col-lg-6:last-child,
    .gov-hero .col-lg-6:last-child {
        margin-top: 35px;
    }

    .career-hero h1 {
        font-size: clamp(36px, 6vw, 48px);
    }

    .section-header h2 {
        font-size: clamp(30px, 5vw, 40px);
    }

    .career-form-box,
    .finance-form-box,
    .registration-box,
    .contact-card {
        padding: 28px 22px;
    }
}

@media (max-width: 575.98px) {
    .conctech-navbar {
        padding: 10px 0;
    }

    .conctech-navbar .logo {
        height: 44px !important;
        width: 44px !important;
    }

    .conctech-navbar .brand-name {
        font-size: 21px !important;
    }

    .consult-btn {
        padding: 10px 16px;
    }

    .hero-buttons,
    .career-buttons {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn,
    .career-buttons .btn {
        margin: 0 0 10px;
        width: 100%;
    }

    .dev-hero,
    .finance-hero,
    .gov-hero,
    .career-hero {
        padding: 55px 0 45px !important;
    }

    .dev-hero h1,
    .finance-hero h1,
    .gov-hero h1,
    .career-hero h1 {
        font-size: 32px;
    }

    .hero-text,
    .dev-hero .hero-text,
    .career-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .career-stats {
        gap: 10px;
    }

    .stat-card {
        padding: 15px 8px;
    }

    .stat-card h3 {
        font-size: 26px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    .footer-main {
        padding: 45px 0 30px;
    }

    .floating-whatsapp {
        bottom: 15px;
        height: 50px;
        left: 15px;
        width: 50px;
    }
}