/* ============================================================
   FLOW CONTROLS UK LTD — Main Stylesheet
   Used across all pages
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
* {
    font-family:
        ui-sans-serif,
        system-ui,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        Segoe UI Symbol,
        "Noto Color Emoji";
}
:root {
    --blue: #1a8fe3;
    --blue-dark: #0f6bbf;
    --dark: #0d1117;
    --topbar-bg: #0f172a;
}

body {
    overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--topbar-bg);
    color: #94a3b8;
    font-size: 13.5px;
    padding: 9px 0;
    animation: fadeDown 0.5s ease both;
}
.topbar-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.topbar-item:hover {
    color: var(--blue);
}
.topbar-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.topbar-right {
    font-size: 13px;
    color: #9aabbb;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeDown 0.55s 0.1s ease both;
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo img{
      width: 190px;
    }
.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 28px;
    height: 28px;
}
.logo-text {
    font-size: 22px;
    line-height: 1;
}
.logo-text .dark {
    color: #1a1a2e;
}
.logo-text .blue {
    color: var(--blue);
}
.nav-links,.nav-links ul {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition:
        color 0.2s,
        background 0.2s;
}
.nav-links a:hover {
    color: var(--blue);
    background: rgba(26, 143, 227, 0.07);
}
.nav-links a.active {
    color: var(--blue);
}
.btn-contact {
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(26, 143, 227, 0.35);
}
.btn-contact:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px) !important;
}
.btn-contact a{
    color:#fff !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: calc(100vh - 109px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1800&q=80")
        center/cover no-repeat;
    transform: scale(1.05);
    animation: bgZoom 8s ease forwards;
    filter: brightness(0.45) saturate(0.7);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 20, 40, 0.88) 0%,
        rgba(10, 25, 55, 0.65) 50%,
        rgba(10, 20, 40, 0.3) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 770px;
    margin: 0 auto;
    padding: 60px 24px 240px;
    width: 100%;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 143, 227, 0.18);
    border: 1px solid rgba(26, 143, 227, 0.35);
    color: var(--blue);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.4s ease both;
}
.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.hero-title {
         font-size: 4.5rem;
        line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-title .line1 {
    display: block;
    animation: fadeUp 0.7s 0.55s ease both;
}
.hero-title .line2 {
    display: block;
    color: var(--blue);
    animation: fadeUp 0.7s 0.68s ease both;
}
.hero-desc {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.82s ease both;
}
.hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.96s ease both;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(26, 143, 227, 0.42);
    transition:
        background 0.2s,
        transform 0.2s;
}
.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.btn-primary svg {
    transition: transform 0.2s;
}
.btn-primary:hover svg {
    transform: translateX(4px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: #fff;
    color: #1a1a1a;
    font-size: 15.5px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition:
        border-color 0.2s,
        background 0.2s,
        transform 0.2s;
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}
.hero-stats {
    position: absolute;
    bottom: 70px;
    left: auto;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
   
    padding: 0 24px;
    
    animation: fadeUp 0.7s 1.15s ease both;
    z-index: 2;
}
.hero-stats .hero-stats-inner{
  padding-top: 20px;
  position: relative;
  margin: 0 auto;   width: 730px;
  display: flex;
    gap: 7.5rem;

}
.hero-stats .hero-stats-inner:after{
content:'';
height: 2px;
background: #ffffff1a;
width: 80%;
position: absolute;
left: 0px;
top: 0px;
}
.stat-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
}
.stat-icon {
    width: 40px;
    height: 40px;
    /*border: 2px solid rgba(26, 143, 227, 0.5);
    border-radius: 50%;*/
  display: flex;
    align-items: center;
    justify-content: flex-start;r;
    flex-shrink: 0;
}
.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue);
}
.stat-num {
    font-size: 34px;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}
.scroll-mouse {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeUp 0.7s 1.3s ease both;
}
.scroll-mouse svg {
    width: 22px;
    height: 32px;
}
.scroll-wheel {
    animation: scrollWheel 1.6s ease-in-out infinite;
}

/* ── ABOUT SECTION (homepage) ── */
.about {
    background: #f0f4f8;
    padding: 100px 0;
}
.about-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-img:hover img {
    transform: scale(1.03);
}
.about-badge {
    position: absolute;
    bottom: -24px;
    left: -16px;
    background: #fff;
    border-radius: 14px;
    padding: 22px 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    min-width: 200px;
}
.about-badge-num {
    font-size: 44px;
    font-weight: 900;
    color: #0d2137;
    line-height: 1;
}
.about-badge-text {
    font-size: 13.5px;
    color: #6b7a8d;
    margin-top: 6px;
    line-height: 1.4;
}
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    display: block;
}
.about-title {
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.1;
    color: #0d2137;
    margin-bottom: 22px;
}
.about-desc {
    font-size: 16px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 30px;
}
.about-desc strong {
    color: #0d2137;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 32px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #2d3748;
    font-weight: 500;
}
.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
   border:var(--blue) solid 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 13px;
    height: 13px;
    color: var(--blue);
}
.about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.about-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-card-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(26, 143, 227, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
}
.about-card-title {
    font-size: 15.5px;
    font-weight: 700;
    color: #0d2137;
    margin-bottom: 4px;
}
.about-card-text {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.6;
}
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(26, 143, 227, 0.38);
    transition:
        background 0.2s,
        transform 0.2s;
}
.btn-about:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.btn-about svg {
    transition: transform 0.2s;
}
.btn-about:hover svg {
    transform: translateX(4px);
}

/* ── PRODUCTS (homepage) ── */
.products {
    background: #f0f4f8;
    padding: 90px 0 80px;
}
.section-header {
    text-align: center;
    margin-bottom: 52px;
    padding: 0 24px;
}
.section-title {
    font-size: clamp(34px, 4vw, 50px);
    color: #0d2137;
    line-height: 1.1;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    color: #5a6a7a;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}
.products-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.3s;
}
.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.product-card.visible:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px);
}
.product-img {
    position: relative;
    overflow: hidden;
    height: 160px;
    flex-shrink: 0;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.product-card:hover .product-img img {
    transform: scale(1.07);
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.product-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #0d2137;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.product-list li {
    font-size: 13.5px;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}
.product-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 6px;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}
.product-link:hover {
    gap: 10px;
}
.product-link svg {
    width: 14px;
    height: 14px;
}
.section-cta {
    text-align: center;
    margin-top: 48px;
}
.section-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}
.section-cta a:hover {
    gap: 14px;
}
.section-cta svg {
    width: 18px;
    height: 18px;
}

/* ── SECTORS (homepage) ── */
.sectors {
    background: #fff;
    padding: 90px 0 80px;
}
.sectors-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sector-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 280px; 
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        box-shadow 0.3s;
}
.sector-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.sector-card.visible:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.sector-card:hover img {
    transform: scale(1.08);
}
.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 15, 35, 0.92) 0%, rgba(5, 15, 35, 0.5) 50%, rgba(5, 15, 35, 0.15) 100%);
    transition: background 0.3s;
}
.sector-card:hover .sector-overlay {
    background: linear-gradient(
        to top,
        rgba(5, 15, 35, 0.95) 0%,
        rgba(5, 15, 35, 0.65) 55%,
        rgba(5, 15, 35, 0.25) 100%
    );
}
.sector-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 24px;
}
.sector-meta {
    margin-bottom: 10px;
}
.sector-meta-box {
    display:  flex;
    align-items: center;
    gap: 6px;  
    color: rgba(100, 180, 255, 0.9);
    font-size: 12.5px;
    font-weight: 600;
}
.sector-meta-box .smb-icon{
      background-color: #058dfb33;
    border: 0px solid rgba(26, 143, 227, 0.3);
    padding:0px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 0.75rem;
    backdrop-filter: blur(4px);
    color: rgba(100, 180, 255, 0.9);
}
.sector-meta-box svg {
    width: 1.5rem;
    height: 1.5rem;
}
.sector-name {
    font-size: 26px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
}
.sector-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ── CONTACT (homepage) ── */
.contact {
    background: #f0f4f8;
    padding: 90px 0;
}
.contact-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-title {
    font-size: clamp(36px, 4vw, 52px);
    color: #0d2137;
    line-height: 1.1;
    margin-bottom: 20px;
}
.contact-desc {
    font-size: 16px;
    color: #5a6a7a;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 420px;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}
.contact-info-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 143, 227, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue);
}
.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}
.contact-info-value {
    font-size: 14px;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.5;
}
.contact-form-card {
    background: #fff;
    border-radius: 18px;
    padding: 38px 36px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
}
.form-card-title {
    font-size: 28px;
    color: #0d2137;
    margin-bottom: 6px;
}
.form-card-desc {
    font-size: 14px;
    color: #6b7a8d;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #2d3748;
	display: block;
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    border: 1.5px solid #d1dce8;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14.5px;
    color: #2d3748;
    background: #fff;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: #aab4c0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 143, 227, 0.12);
}
.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7a8d' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
	 max-height: 130px;
}
.btn-send {
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 22px rgba(26, 143, 227, 0.38);
    transition:
        background 0.2s,
        transform 0.2s;
    margin-top: 8px;
}
.btn-send:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.btn-send svg {
    width: 18px;
    height: 18px;
}

/* ── FOOTER ── */
.footer {
    background: #0d1626;
    color: #fff;
}
.footer-newsletter {
    background: #111f35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
}
.footer-newsletter-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.newsletter-left h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 4px;
}
.newsletter-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}
.newsletter-form {
    display: flex;
    gap: 0;
}
.newsletter-input {
    width: 320px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.newsletter-input:focus {
    border-color: var(--blue);
    background: rgba(26, 143, 227, 0.08);
}
.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 0 8px 8px 0;
    transition: background 0.2s;
}
.newsletter-btn:hover {
    background: var(--blue-dark);
}
.newsletter-btn svg {
    width: 16px;
    height: 16px;
}
.footer-main {
    padding: 60px 0 48px;
}
.footer-main-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 28px;
}
.footer-brand {
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}
.footer-logo-icon {
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-logo-icon svg {
    width: 32px;
    height: 32px;
}
.footer-logo-text {
    font-size: 24px;
    line-height: 1;
}
.footer-logo-text .w {
    color: #fff;
}
.footer-logo-text .b {
    color: var(--blue);
}
.footer-brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}
.social-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.social-btn svg {
    width: 16px;
    height: 16px;
}
.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition:
        color 0.2s,
        gap 0.2s;
}
.footer-links a:hover {
    color: var(--blue);
    gap: 12px;
}
.footer-links a svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-contact-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.reveal.from-left {
    transform: translateX(-30px);
}
.reveal.from-right {
    transform: translateX(30px);
}
.reveal.visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d1117;
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.32) saturate(0.6);
    transform: scale(1.04);
    animation: bgZoom 8s ease forwards;
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 18, 38, 0.93) 0%,
        rgba(8, 22, 50, 0.72) 55%,
        rgba(8, 18, 38, 0.35) 100%
    );
}
.page-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.2s ease both;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--blue);
}
.breadcrumb svg {
    width: 12px;
    height: 12px;
}
.breadcrumb-current {
    color: var(--blue);
    font-weight: 600;
}
.page-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 143, 227, 0.18);
    border: 1px solid rgba(26, 143, 227, 0.35);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    animation: fadeUp 0.6s 0.35s ease both;
}
.page-banner-label-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.page-banner-title {
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 18px;
    animation: fadeUp 0.6s 0.5s ease both;
}
.page-banner-title span {
    color: var(--blue);
}
.page-banner-desc {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16.5px;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.65s ease both;
}

/* ── SHARED CTA BUTTONS ── */
.cta-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(26, 143, 227, 0.4);
    transition:
        background 0.2s,
        transform 0.2s;
}
.cta-solid:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}
.cta-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    transition:
        border-color 0.2s,
        background 0.2s,
        transform 0.2s;
}
.cta-outline-dark:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.grecaptcha-badge{
    visibility: hidden !important;
}
/* ── KEYFRAMES ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bgZoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .footer-main-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 768px) {
    .topbar-right {
        display: none;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 12px 16px;
        display: block;
    }
    .hamburger {
        display: flex;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 48px;
    }
    .hero {
        min-height: auto;
    }
    .hero-content {
        padding: 60px 24px 60px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-banner {
        height: 340px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input {
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }
    .newsletter-btn {
        border-radius: 8px;
        justify-content: center;
    }
}
@media (max-width: 540px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px 20px;
    }
    .footer-main-inner {
        grid-template-columns: 1fr;
    }
.topbar-left {

  width: 100%;
  justify-content: space-between;
}
.topbar-item svg {
  width: 13px;
  height: 13px;
}
    .topbar-inner {
  width: 100%x;
  padding: 0 15px;
  font-size: 11px;
}

.btn-contact {   padding: 2px 22px !important; 
  width: 100%;
  margin-top: 15px;
   margin-bottom: 15px;
  text-align: center;
}
.nav-links.open li{
    width: 100%;
    display: inline-block;
text-align: center;
}
.nav-links.open li.btn-contact a{
    border: 0px !important;

}
.hero-title {
  font-size: 3.2rem;
}
.hero {
   flex-direction: column;
}
.logo img {
  width: 135px !important;
}
.nav-links.open li a{
    width: 100%;
text-align: center;    display: inline-block;
    border-radius: 0px;
    border-bottom: #cbc9c9 solid 1px;

}
.hero-stats {
    padding: 0px !important;
    margin:0px !important
}
  .hero-stats .hero-stats-inner {
    padding-top: 20px;
    position: relative;
    margin: 0 auto;
    width: 90%;
    display: flex;
   
    gap: 1rem;
    padding-bottom: 70px;
}

.stat-num {
  font-size: 25px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}
.stat-label {
  font-size: 11px;
}

.btn-outline ,.btn-primary{
  
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px; 
  justify-content: center;
  width: 100%;
  text-align: center;
}
.about { 
  padding: 50px 0;
}
.products {
   padding: 40px 0 50px;
}
.page-banner-desc {
   font-size: 15.5px;
  line-height: 1.4;
   
}
}