

/* Stats Section */
.stats-section {
   
    padding: 60px 0;
    color: #fff;
}

.stat-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #7ef0ff; /* similar to screenshot color */
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #e8faff;
    margin: 0;
}

/* Optional hover effect */
.stat-box:hover h2 {
    transform: scale(1.05);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-box {
        margin-bottom: 30px;
    }
}

.navbar-nav .nav-link {
    padding: 18px 20px;
    font-size: 16px;
    color: #333 !important;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: #5a27e7 !important; /* purple highlight like second image */
}

.navbar-nav .nav-link:hover {
    color: #5a27e7 !important;
}




/* GRID – 2 by 2 like second image */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 30px;
    justify-content: center;
}

/* Single Box */
.service-box {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;

    /* MAKE THEM SQUARE */
    height: 180px;
    width: 220px;

    transition: 0.3s;
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

/* Icon style */
.service-box i {
    font-size: 40px;
    color: #72e3ff;
    margin-bottom: 15px;
}

/* Title */
.service-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

/* Description */
.service-box p {
    color: #d8f0ff;
    font-size: 14px;
    line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .service-box {
        height: auto;
        width: 100%;
    }
}



.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #0c1b3c; /* dark navy text */
    margin-bottom: 15px;
}

/* Underline */
.title-underline {
    width: 80px;
    height: 4px;
    background: #1fb6ff; /* teal-blue like screenshot */
    margin: 0 auto 25px auto;
    border-radius: 3px;
}

/* Paragraph */
.about-desc {
    font-size: 20px;
    line-height: 1.7;
    color: #4c5b70;
    max-width: 850px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
    .about-desc {
        font-size: 18px;
    }
}

/* Background with dots */
.core-services {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

/* Dotted Background Pattern */
.core-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e8e9f1 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #0c1b3c;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* Blue underline */
.section-underline {
    width: 70px;
    height: 4px;
    background: #15c6ff;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

/* Grid layout */
.servicess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 18px 55px rgba(0, 0, 0, 0.10);
}

/* Icon Container */
.icon-box {
    width: 80px;
    height: 80px;
    background: #4438d8;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.icon-box i {
    font-size: 38px;
    color: white;
}

/* Blue gradient icon (Enterprise software example) */
.icon-blue {
    background: #4438d8;
}

/* Title */
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0c1b3c;
    margin-bottom: 15px;
}

/* Description */
.service-card p {
    color: #6e6f89;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Learn More Button */
.learn-more {
    padding: 10px 22px;
    border: 2px solid #4438d8;
    border-radius: 12px;
    color: #4438d8;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.learn-more:hover {
    background: #17bfe5;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* Hover effect */
.service-card:hover {
    transform: translateY(-8px); /* move up */
    border-color: #17bfe5;       /* purple border */
    box-shadow: 
        0 15px 45px rgba(58, 50, 211, 0.25),  /* purple glow shadow */
        0 8px 20px rgba(0, 0, 0, 0.08);       /* soft dark shadow */
}

/* Icon box animation on hover */
.service-card .icon-box {
    transition: 0.35s ease;
}

/* Hover: icon glow */
.service-card:hover .icon-box {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(58, 50, 211, 0.25);
}



/* Section background with soft circles */
.trusted-section {
    padding: 80px 0;
    background: #f9fbff;
    position: relative;
    overflow: hidden;
}

/* Soft radial background circles */
.trusted-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #f0f4ff 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

/* Heading */
.trusted-title {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #0c153a;
    margin-bottom: 10px;
}

/* Underline */
.trusted-underline {
    width: 70px;
    height: 4px;
    background: #10c6ff;
    margin: 0 auto 20px;
    border-radius: 4px;
}

/* Subtitle */
.trusted-subtitle {
    text-align: center;
    color: #5d6473;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Logos area */
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

/* Logo styling */
.trusted-logos img {
    max-height: 55px;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    filter: grayscale(100%);
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* MAIN SECTION */
.cta-grid {
    position: relative;
    padding: 110px 20px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;

    /* Perfect gradient like screenshot */
    background: linear-gradient(90deg, #2638b0, #1f62c8, #00b6ef);
}

/* GRID LINES BACKGROUND */
.cta-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);

    /* Size of the squares (perfect match) */
    background-size: 80px 80px;

    /* Increase opacity to match your visible grid */
    opacity: 0.35;

    pointer-events: none;
}

/* TEXT STYLING */
.cta-inner h2 {
    font-size: 60px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}

/* BUTTON */
.cta-btn {
    background: #ffffff;
    color: #1f2b49;
    padding: 10px 45px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s ease;
    box-shadow: 0px 6px 22px rgba(0,0,0,0.25);
}

.cta-btn:hover {
    transform: translateY(-4px);
    background: #f3faff;
}


.about-section {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.about-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: #444;
}

.about-cards {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 80px;
}

.about-card {
    max-width: 350px;
}

.icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Gradient circle like your screenshot */
    background: linear-gradient(135deg, #2e59ba, #00b5e7);
}

.icon-wrap img {
    width: 55px;
    height: 55px;
}

.about-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.values-section {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.values-title {
    font-size: 48px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: #00a3ff;
    margin: 15px auto 50px;
    border-radius: 3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
}

.value-card {
    width: 100%;
    max-width: 330px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    border-radius: 50%;

    /* Gradient Circle */
    background: linear-gradient(135deg, #00a77f, #1a3db9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon img {
    width: 50px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.value-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}


.approach-section {
    padding: 80px 20px;
}

.approach-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0d1b2a;
}

.approach-desc {
    font-size: 20px;
    line-height: 1.7;
    max-width: 850px;
    color: #444;
    padding-bottom: 40px;
}

.approach-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.approach-left {
    width: 50%;
}

.approach-item {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    align-items: flex-start;
}

.approach-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077c8, #142c85);
    display: flex;
    justify-content: center;
    align-items: center;
}

.approach-icon i {
    font-size: 28px;
    color: white;
}

.approach-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.approach-item p {
    font-size: 17px;
    color: #555;
}

.approach-right {
    width: 40%;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.big-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #1b2a8a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big-icon i {
    font-size: 55px;
    color: #1b2a8a;
}


.why-choose {
    padding: 90px 20px;
    text-align: center;
}

.choose-title {
    font-size: 48px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.title-underline {
    width: 150px;
    height: 4px;
    background: #00b4d8;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-content: center;
}

.choose-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
    text-align: left;
    position: relative;
    transition: 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.12);
}

.choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.choose-card h3 span {
    font-size: 50px;
    font-weight: 700;
    color: rgba(0,0,0,0.08);
    position: absolute;
    right: 0;
    top: -15px;
}

.choose-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Box Styling */
.services-menu {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 0;
    min-width: 250px;
    border: none;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
}

/* Dropdown Item */
.services-menu .dropdown-item {
    font-size: 17px;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    white-space: normal;
}

.services-menu .dropdown-item:hover {
    background: #e9f1ff;
    color: #0b5ed7;
}

/* Align dropdown under the menu */
.custom-dropdown .dropdown-menu {
    margin-top: 18px;
}

/* Dropdown arrow spacing */
.nav-link.dropdown-toggle::after {
    margin-left: 6px;
}
.contact-section {
    padding: 60px 0;
    background: #fff;
    font-family: "Inter", sans-serif;
}

.contact-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 60px;
}

.contact-form {
    width: 55%;
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 22px;
    border-radius: 10px;
    border: 1px solid #cdd6e0;
    font-size: 16px;
    outline: none;
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.send-btn {
    background: linear-gradient(90deg, #3b2dbf, #5288ff);
    color: #fff;
    padding: 14px 35px;
    border-radius: 10px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* RIGHT SIDE INFO */
.contact-info {
    width: 45%;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #000;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    background: linear-gradient(135deg, #2e36c9, #129aff);
    margin-top: -30px;
}

/* Section Base */
.why-choose-us {
    padding: 60px 0;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: #1e88ff;
    margin: 0 auto 40px;
    border-radius: 5px;
}

/* Grid Layout */
.choose-grid {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Cards */
.choose-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
}

/* Icons */
.choose-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #2436d8, #0eaffe);
    color: #fff;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #445268;
}

/* Mobile Responsive */
@media(max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 70px 0;
    font-family: "Inter", sans-serif;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-underline {
    height: 4px;
    width: 80px;
    margin: 0 auto 50px;
    background: #1e88ff;
    border-radius: 5px;
}

/* Grid */
.faq-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* FAQ item */
.faq-item {
    padding: 10px 20px;
    position: relative;
}

.faq-line {
    width: 4px;
    height: 100%;
    background-color: #2a2eae;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 3px;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 20px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #445268;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   SERVICE HERO SECTION
================================*/
.service-hero{
    padding: 120px 0 120px;
    background: linear-gradient(90deg, #1a3b8b, #009ddf);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background grid / dots / decorative elements */
.service-hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 40px 40px;
    top: -150px;
    left: -100px;
    opacity: 0.5;
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 40px 40px;
    bottom: -150px;
    right: -100px;
    opacity: 0.5;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}



.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.blue { background: linear-gradient(135deg, #0072ff, #00c6ff); }

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.service-card ul li {
    list-style: "✔ ";
    margin-bottom: 10px;
    color: #333;
}

.learn-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #4a3aff;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #2e22d3;
}




.process-section {
    text-align: center;
    padding: 60px 0;
}

.process-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0d0d0d;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #2ea3ff;
    margin: 0 auto 50px auto;
    border-radius: 4px;
}

.process-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-card {
    width: 320px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0px 12px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 40px rgba(0,0,0,0.12);
}

.process-number {
    height: 90px;
    width: 90px;
    margin: 0 auto 25px auto;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(145deg, #1f4bd8, #19b9db);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}


.service-item h5,
.service-item p,
.container-fluid.bg-light h1,
.container-fluid.bg-light p {
    color: #000 !important;
}


.center-accent-line {
    width: 90px;
    height: 5px;
    background: linear-gradient(to right, #0e5fd8, #16a5ff);
    margin: 20px auto;        /* center the line */
    border-radius: 5px;
}

.servicess-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* Centers items in each row */
    gap: 40px;                 /* Space between boxes */
}


.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* Centers each row */
    gap: 40px;                /* Space between cards */
    max-width: 1300px; 
    margin: 0 auto;           /* Center whole section */
}

.service-card {
    width: 360px;             /* Controls how many cards fit per row */
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo-img {
    height: 60px;      /* adjust size */
    width: auto;
    object-fit: contain;
}
.navbar-brand {
    padding: 0;
    margin: 0;
}


:root {
    --primary: #1363C6;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
   
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
  
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}
  
.case-item:hover img {
    transform: scale(1.2);
}
  
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}