
body .services-section,
body .service-wrap-layout2,
body .technology-section,
body .why-choose-section,
body .suitable-section,
body .cta-section {
    font-family: "Poppins", sans-serif;
}


.hero-section,
.main-banner-wrap-layout2 {
    padding: 64px 0;
    background: linear-gradient(180deg, rgba(245,247,251,1) 0%, rgba(255,255,255,1) 100%);
}

.hero-section .hero-title,
.main-banner-wrap-layout2 .item-title {
    color: var(--primary);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
}

.hero-section .hero-subtitle,
.main-banner-wrap-layout2 .item-sub-title {
    font-size: 1.15rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-section .hero-desc,
.main-banner-wrap-layout2 .item-paragraph {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-section .hero-image,
.main-banner-wrap-layout2 .item-figure {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-wrap-layout2,
.services-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.service-wrap-layout2 .heading-main-title,
.services-section .services-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.service-wrap-layout2 .heading-layout1 p,
.services-subtext {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.service-wrap-layout2 .row > .col-md-4,
.service-wrap-layout2 .row > .col-lg-4,
.service-wrap-layout2 .row > .col-lg-3 {
    display: flex;
}

.service-wrap-layout2 .service-box-layout2,
.services-section .service-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 26px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s ease;
    position: relative;
    overflow: hidden;
}

.service-wrap-layout2 .service-box-layout2::before,
.services-section .service-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: 0;
    height: 120%;
    z-index: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    transform: translateY(0);
    transition: top .6s ease;
    opacity: 0.95;
    pointer-events: none;
}

.service-wrap-layout2 .service-box-layout2:hover::before,
.services-section .service-card:hover::before {
    top: 0;
}

.service-wrap-layout2 .service-box-layout2:hover,
.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-wrap-layout2 .service-box-layout2 * ,
.services-section .service-card * {
    position: relative;
    z-index: 2;
}

.service-wrap-layout2 .item-icon,
.services-section .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg,#4538ba,#6a3df0);
    color: #fff;
    box-shadow: 0 8px 18px rgba(69,56,186,0.18);
    margin-bottom: 14px;
    transition: transform .35s ease;
}

.service-wrap-layout2 .service-box-layout2:hover .item-icon,
.services-section .service-card:hover .service-icon {
    transform: translateY(-6px) scale(1.06);
}

.service-wrap-layout2 .item-title,
.services-section .service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-wrap-layout2 .service-box-layout2 p,
.services-section .service-desc,
.service-wrap-layout2 .item-title + p {
    color: #333;
    line-height: 1.7;
}

.service-wrap-layout2 .service-box-layout2:hover .item-title,
.service-wrap-layout2 .service-box-layout2:hover p,
.services-section .service-card:hover .service-title,
.services-section .service-card:hover .service-desc {
    color: #fff;
}

.service-wrap-layout2 .list-style,
.services-section .service-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.service-wrap-layout2 .list-style li::before,
.services-section .service-list li::before {
    content: "✔";
    color: #fff;
    display:inline-block;
    margin-right:8px;
    transform: translateY(-1px);
}

.suitable-section .suitable-box,
.suitable-box {
    background: linear-gradient(135deg,#fff,#ffffff);
    border-radius: 12px;
    padding: 20px;
    text-align:center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(10,102,194,0.06);
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    font-weight:600;
    color: #0b3a66;
}

.suitable-section .suitable-box:hover,
.suitable-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    background: linear-gradient(135deg,#6a3df0,#9571ff);
    color: #ffffff;
}

/*  */
.cta-section .cta-box,
.cta-box {
    text-align:center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(106,61,240,0.08), rgba(10,102,194,0.04));
    border-radius: 14px;
    border: 1px solid rgba(69,56,186,0.06);
    margin-top: 10px;
}

.cta-section .btn-cta,
.cta-box .btn-cta,
.service-btn {
    background: linear-gradient(135deg,var(--accent-start),var(--accent-end));
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    display:inline-block;
    font-weight:700;
    border:none;
    transition: transform .28s ease, box-shadow .28s ease;
    box-shadow: 0 8px 25px rgba(106,61,240,0.2);
}

.cta-section .btn-cta:hover,
.cta-box .btn-cta:hover,
.service-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(86, 55, 180, 0.32);
}

.contact-section .contact-info {
    text-align:center;
    margin-top: 40px;
}

[data-aos][data-aos][data-aos^="fade"] {
    transition: opacity .85s ease, transform .85s ease;
}

@media (max-width: 991px) {
    .hero-section .hero-title,
    .main-banner-wrap-layout2 .item-title { font-size: 28px; }
    .service-wrap-layout2 .service-box-layout2 { padding: 20px; }
}

@media (max-width: 576px) {
    .service-wrap-layout2 .service-box-layout2 { padding: 18px; border-radius: 10px; }
    .suitable-box { padding: 14px; font-size: 14px; }
}


:root{
    --bg: #0b1220;
    --panel: #fbfdff;
    --text: #0b1724;
    --muted: #6b7a86;
    --accent: #0b66ff;
    --accent-2: #c59a2a;
    --glass: rgba(255,255,255,0.7);
    --radius: 14px;
    --card-shadow: 0 10px 30px rgba(15,20,28,0.06);
    --transition: 300ms cubic-bezier(.22,.9,.15,1);
}



html,body {  background:var(--bg); color:var(--text); font-family: 'Poppins', sans-serif; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
.container-fluid, .container { ; margin:0 auto; padding:0 18px; }

.navbar-wrap { background: transparent; }


.default-logo img { transition: transform .3s var(--transition); }
.default-logo img:hover { transform: translateY(-4px); }

.btn-fill { display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border-radius:999px; background: linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff; font-weight:700; box-shadow: 0 8px 30px rgba(11,102,255,0.07); transition: transform .22s ease, box-shadow .22s ease; text-decoration:none; border:none; }
.btn-fill:hover{ transform: translateY(-4px); box-shadow:0 18px 40px rgba(11,102,255,0.12); }

.main-banner-wrap-layout2 { padding:72px 0 42px; position:relative; overflow:visible; }
.main-banner-box-layout2 .item-sub-title { color:var(--accent); font-weight:700; letter-spacing:.2px;margin-top: 25px; margin-bottom:14px; }
.main-banner-box-layout2 .item-title { font-size:20px; line-height:1.04; margin-bottom:18px; color:var(--text); font-weight:800; }
.main-banner-box-layout2 p { color:var(--muted); font-size:16px; margin-bottom:16px; max-width:640px; color: black; }

.item-figure { display:flex; align-items:center; justify-content:center; }
.lottie-placeholder img {  border-radius:5px;   }

.service-box-layout2 { background:var(--panel); padding:26px; border-radius:12px; box-shadow:var(--card-shadow); transition: transform var(--transition), box-shadow var(--transition); border:1px solid rgba(11,102,255,0.04); }
.service-box-layout2 .item-icon { font-size:28px; color:var(--accent); margin-bottom:10px; display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:10px; background:linear-gradient(135deg, rgba(11,102,255,0.06), rgba(197,154,42,0.04)); }
.service-box-layout2 .item-title { font-weight:700; margin-bottom:6px; color:var(--text); }
.service-box-layout2 .item-title, .service-box-layout2 p { transition: color var(--transition); }
.service-box-layout2:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(2,6,23,0.06); border-color: rgba(11,102,255,0.09); }
.service-box-layout2:hover .item-icon { transform: translateY(-4px); }

.advanced-card { will-change: transform, opacity; }

.feature-wrap-layout2 { padding:36px 0; }
.btn-gradient { background: linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff; padding:10px 18px; border-radius:8px; text-decoration:none; display:inline-block; }

.process-wrap-layout2 { padding:46px 0; color:#fff; background-position:center; background-size:cover; background-repeat:no-repeat; border-radius:10px; box-shadow: 0 12px 40px rgba(2,6,23,0.12); }

.process-wrap-layout2 h2 { font-size:30px; font-weight:800; margin-bottom:6px; color:#fff; }
.process-wrap-layout2 p { color: rgba(255,255,255,0.9); margin-bottom:18px; }

/* ---------- footer ---------- */
.footer-wrap-layout2 { padding:38px 0; background:transparent; color:var(--muted); }
.footer-widgets .footer-logo img { max-width:180px; }

/* ---------- tiny helpers ---------- */
.center { text-align:center; }
.text-muted { color:var(--muted); }

/* ---------- Lottie fallback responsiveness ---------- */
.lottie-placeholder, lottie-player { display:block; margin:0 auto; }

/* ---------- SVG hero accent draw effect (slower) ---------- */
.hero-svg path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: line-draw 1.8s ease forwards; }
@keyframes line-draw { to { stroke-dashoffset: 0; } }

/* ---------- responsive ---------- */
@media (max-width: 992px){
    .main-banner-box-layout2 .item-title { font-size:15px; }
    .lottie-placeholder img { max-width:320px; }
}
@media (max-width: 576px){
    .main-banner-box-layout2 .item-title { font-size:26px; }
    .default-logo img { width:auto }
    .item-figure { margin-top:18px; }
}

/* ---------- accessibility & focus ---------- */
a:focus, button:focus { outline: 3px solid rgba(11,102,255,0.14); outline-offset: 2px; }

.services-section {
    padding: 60px 20px;
    max-width: auto;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.service-card {
    background: #ffffffee;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform .3s cubic-bezier(.2,.9,.3,1), box-shadow .3s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Raise to top */


/* Icon box with animation */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    animation: colorFloat 7s linear infinite;
}

/* Placeholder SVG */
.svg-placeholder rect {
    fill: rgba(255,255,255,0.2);
}



/* Make all text dark for readability */
.footer-wrap-layout2,
.footer-wrap-layout2 p,
.footer-wrap-layout2 a,
.footer-wrap-layout2 li,
.footer-wrap-layout2 .footer-contact li,
.footer-wrap-layout2 .copy-right-text {
    color: white !important;
}

/* Links hover style */
.footer-wrap-layout2 a:hover {
    color: #0d6efd !important; /* your theme blue */
}

/* Footer widget headings (you already use blue) */
.footer-widget-heading {
    color: #0d6efd !important;
}

/* Remove any leftover dark styles */
.footer-wrap-layout2 .footer-bottom-layout2 {
    border-top: 1px solid #e5e5e5;
}

/* Text styling */
.service-card h3 {
    font-size: 18px;
    margin: 0;
}

.service-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}
.tech-section {
    padding: 70px 20px;

    margin: auto;
    text-align: center;
}

.tech-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-sub {
    color: #555;
    font-size: 16px;
    margin-bottom: 40px;
}

.tech-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Card design */
.tech-card {
    background: #ffffffee;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

/* Hover Elevation */
.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Animated icon background */
.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 300% 300%;
    animation: techColors 7s linear infinite;
}

/* Placeholder SVG */
.svg-placeholder rect {
    fill: rgba(255,255,255,0.25);
}

@keyframes techColors {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Color gradients for each card */
.tc1 .tech-icon { background: linear-gradient(135deg,#008bff,#62c1ff); }
.tc2 .tech-icon { background: linear-gradient(135deg,#ff6e6e,#ff9f6e); }
.tc3 .tech-icon { background: linear-gradient(135deg,#9c7bff,#c8a7ff); }
.tc4 .tech-icon { background: linear-gradient(135deg,#61ffc2,#38d39a); }
.tc5 .tech-icon { background: linear-gradient(135deg,#ffd65c,#ff8ad1); }

/* Text inside cards */
.tech-content h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.tech-content p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.suitable-section {
    padding: 60px 20px;

    margin: auto;
    text-align: center;
}

.suitable-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* Grid layout */
.suitable-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* Card Styling */
.suitable-card {
    background: #ffffffee;
    padding: 26px 20px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Hover raise effect */
.suitable-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

/* Icon animation box */
.suitable-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    animation: floatColors 7s linear infinite;
}

/* Placeholder SVG */
.suitable-svg rect {
    fill: rgba(255,255,255,0.25);
}

/* Color animation */
@keyframes floatColors {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Different gradients for each card */
.sf1 .suitable-icon { background: linear-gradient(135deg,#7b61ff,#a770ff); }
.sf2 .suitable-icon { background: linear-gradient(135deg,#ff7b7b,#ffb36b); }
.sf3 .suitable-icon { background: linear-gradient(135deg,#7be5ff,#4ec6ff); }
.sf4 .suitable-icon { background: linear-gradient(135deg,#7bffb3,#38d39a); }
.sf5 .suitable-icon { background: linear-gradient(135deg,#ffd46b,#ffa44b); }
.sf6 .suitable-icon { background: linear-gradient(135deg,#ff84d9,#ff62aa); }
.sf7 .suitable-icon { background: linear-gradient(135deg,#6cffe1,#38d4c5); }
.sf8 .suitable-icon { background: linear-gradient(135deg,#ffc76b,#ffa09c); }

.suitable-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
/* Section spacing */
.tech-section {
    padding: 70px 0;
    text-align: center;
}

/* Grid layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

/* Cards */
.tech-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover raise + color glow */
.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Glow animation */
.tech-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    opacity: 0;
    transition: 0.35s ease;
}

.tech-card:hover::after {
    opacity: 0.15;
}

/* Icon container */
.tech-icon {
    width: 75px;
    height: 75px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floating-colors 8s linear infinite;
}

/* Placeholder SVG */
.svg-placeholder rect {
    fill: rgba(255, 51, 51, 0.4);
}

/* Title & paragraph inside card */
.tech-content h3 {
    font-size: 22px;
    margin: 0 0 6px;
    color: #4786e5;
}

.tech-content p {
    margin: 0;
    color: #444;
    font-weight: 500;
    font-size: 16px;
}

/* Icon color animation */
@keyframes floating-colors {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.float-shape {
    position: absolute;
    animation: float 12s infinite ease-in-out;
    opacity: 0.7;
}

@keyframes float {
    0%   { transform: translate(0, 0) }
    50%  { transform: translate(20px, -30px) }
    100% { transform: translate(0, 0) }
}
.shapes svg:nth-child(1) { top: 10%; left: 5%; }
.shapes svg:nth-child(2) { top: 40%; right: 10%; }
.shapes svg:nth-child(3) { bottom: 15%; left: 20%; }
/* add more as needed */

/* ================================
   SERVICE SECTION (MATCHED TO HTML)
================================ */

/* Section container */
.services-section {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

/* Section title */
.services-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 45px;
    color: #0d6efd;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 10px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Animation */
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0, 68, 255, 0.18);
}

/* Service Icon Wrapper */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px auto;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: #e8f0ff;
    stroke: #0d6efd;
    stroke-width: 1.5px;
    transition: 0.3s ease;
}

/* Hover effect on icon */
.service-card:hover .service-icon svg {
    fill: #d0f7ec;
    stroke: #00c389;
    transform: scale(1.15) rotate(8deg);
}

/* Service title */
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

/* Service text */
.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 10px;
}


/* =============================
   FLOATING SHAPES + SHOOTING STAR
============================= */

/* Floating shapes wrapper */
.floating-shapes .shape {
    position: absolute;
    animation: float 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Individual shape speeds */
.shape1 {
    top: 10%;
    left: 5%;
    animation-duration: 7s;
}
.shape2 {
    top: 60%;
    right: 10%;
    animation-duration: 9s;
}
.shape3 {
    bottom: 15%;
    left: 20%;
    animation-duration: 8s;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-18px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.7; }
}

/* Shooting star */
.shooting-star {
    position: absolute;
    top: 50%;
    right: -150px;
    animation: shooting 4s infinite linear;
    opacity: 0.4;
}

/* Shooting star animation */
@keyframes shooting {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 0.7; }
    100% { transform: translateX(-1200px); opacity: 0; }
}


/* =============================
   RESPONSIVE FIXES
============================= */

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-section .section-title {
        font-size: 1.9rem;
    }

    .service-card {
        padding: 25px 20px;
    }
}

/* ================================
   TECH SECTION
================================ */
.tech-section {
    position: relative;
    padding: 100px 0;
    background: #0b1321;
    overflow: hidden;
    text-align: center;
}

.tech-title,
.tech-sub {
    color: #ffffff !important;
}

/* ================================
   GRID
================================ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

/* ================================
   TECH CARD
================================ */
.tech-card {
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 45px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(18px);
    transition: 0.45s ease;
    overflow: hidden;
    transform-style: preserve-3d;
    position: relative;
    color: #ffffff;
}

/* Shine Sweep */
.tech-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.tech-card:hover::after {
    left: 120%;
}

/* Glow Bubble */
.tech-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: #0d6efd33;
    border-radius: 50%;
    top: -25px;
    right: -25px;
    filter: blur(25px);
}

/* Hover */
.tech-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* ================================
   ICON BOX
================================ */
.tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    box-shadow: 0 0 25px #0d6efd88;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 20px;
}

/* SVG Styling */
.tech-icon svg {
    width: 38px;
    height: 38px;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Draw animation effect */
.tech-icon svg path,
.tech-icon svg circle,
.tech-icon svg rect,
.tech-icon svg line {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: draw 1.8s ease forwards;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Content */
.tech-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.tech-content p {
    color: #fff !important;
    font-size: 16px;
}

/* ================================
   FLOATING SHAPES
================================ */
.tech-shape {
    position: absolute;
    opacity: 0.12;
    fill: #0d6efd;
    animation: floatShape 9s infinite ease-in-out;
}

.tech-shape-1 { top: 10%; left: 5%; animation-duration: 10s; }
.tech-shape-2 { bottom: 15%; right: 10%; animation-duration: 12s; }
.tech-shape-3 { top: 40%; right: 5%; animation-duration: 14s; }

@keyframes floatShape {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(20deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
/* Suitable Section */
.suitable-section {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.suitable-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Grid */
.suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 10px 5px;
}

/* Cards */
.suitable-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Animation */
.suitable-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Icon Box */
.suitable-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* SVG Icon */
.suitable-svg {
    width: 50px;
    height: 50px;
    stroke: #0d6efd;
    transition: 0.3s ease;
}

/* Icon Hover Effect */
.suitable-card:hover .suitable-svg {
    transform: scale(1.18) rotate(6deg);
    stroke: #00c389;
}

/* Text */
.suitable-card p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

/* Floating Shapes (Optional – matches service cards) */
.suitable-section .floating-shapes .shape {
    position: absolute;
    animation: float 6s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.suitable-section .shape1 { top: 12%; left: 6%; animation-duration: 7s; }
.suitable-section .shape2 { bottom: 18%; right: 12%; animation-duration: 9s; }
.suitable-section .shape3 { top: 55%; left: 22%; animation-duration: 8s; }

/* Shooting Star */
.suitable-section .shooting-star {
    position: absolute;
    top: 50%;
    right: -150px;
    animation: shooting 4s infinite linear;
    opacity: 0.4;
}

/* Keyframes already match your service cards */
@keyframes float {
    0% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-20px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.7; }
}

@keyframes shooting {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    100% { transform: translateX(-1200px); opacity: 0; }
}

/* Responsive */
@media (max-width: 576px) {
    .suitable-card {
        padding: 25px 20px;
    }
    .suitable-title {
        font-size: 1.6rem;
    }
}
.footer-wrap-layout2,
.footer-wrap-layout2 p,
.footer-wrap-layout2 a,
.footer-wrap-layout2 li,
.footer-wrap-layout2 .footer-contact li,
.footer-wrap-layout2 .copy-right-text {
    color: white !important;
}

/* Links hover style */
.footer-wrap-layout2 a:hover {
    color: #0d6efd !important; /* your theme blue */
}

/* Footer widget headings (you already use blue) */
.footer-widget-heading {
    color: #0d6efd !important;
}

/* Remove any leftover dark styles */
.footer-wrap-layout2 .footer-bottom-layout2 {
    border-top: 1px solid #e5e5e5;
}
@media (min-width: 2560px){
    .feature-wrap-layout2{
        padding: 300px !important;
    }
    .main-banner-box-layout2 {
        max-width: 1200px;       /* prevents text stretching */
        margin-left: auto;
        margin-right: auto;

        display: flex;
        flex-direction: column;
        justify-content: center; /* equal vertical spacing */
        gap: 32px;               /* consistent spacing */
    }
    .main-banner-box-layout2 .item-sub-title {
        font-size: 56px !important;
        line-height: 1.2;
    }

    .main-banner-box-layout2 .item-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .main-banner-box-layout2 p {
        font-size: 20   px;
        line-height: 1.8;
        max-width: 900px;
        font-weight: bold;
    }

    .social-links-hero {
        margin-top: 20px;
        display: flex;
        gap: 18px;
    }

    .social-links-hero .social-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

}