/********** Template CSS **********/
: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;
}


.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    border-radius: 8px;
    text-align: center;
}


/* Process Section */
        .process-section {
            padding: 100px 0;
            background-color: white;
        }

        .process-step {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }




/*** 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;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.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;
}
<style>
/* Adjust logo size */
.logo-img {
    height: 40px;
    width: auto;
    max-height: 100%;
}

/* Make navbar-brand responsive */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* Ensure proper spacing */
.navbar-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}
</style>

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;      /* 👈 REDUCE SIZE */
    height: 60px;     /* 👈 REDUCE SIZE */
    background: url("../img/cloud.svg") no-repeat center;
    background-size: contain;
    opacity: 0.15;    /* optional */
}
.service-icon.btn-square {
    width: 60px;              /* control icon background size */
    height: 60px;
    border-radius: 50%;
    background: #f0f6ff;      /* light blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Font Awesome icon size */
.service-icon i {
    font-size: 24px !important;  /* 👈 REDUCED SIZE */
    color: #0d6efd;              /* Bootstrap primary */
}

/* Icon container */
.service-icon.btn-square {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f5f9ff;   /* light background like other icons */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;      /* 👈 prevents overflow */
}

/* SVG/Image sizing */
.service-svg {
    width: 34px;           /* 👈 perfect fit */
    height: 34px;
    object-fit: contain;
    display: block;
}

/* REMOVE any shadow (important for your case) */
.service-icon,
.service-svg {
    box-shadow: none !important;
    filter: none !important;
}
/* Icon circle container */
.service-icon.btn-square {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f5f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
}

/* SVG icon (Cloud) */
.service-svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

/* Font Awesome icons */
.service-icon i {
    font-size: 32px;
    color: #0d6efd;
}

/* Remove ALL shadows */
.service-icon,
.service-svg,
.service-item {
    box-shadow: none !important;
    filter: none !important;
}
/* Service Card */
.service-item {
    background: #ffffff;
    padding: 40px 30px;
    height: 100%;
}

/* Icon wrapper */
.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

/* Icon circle */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f5f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG icon */
.icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

/* Font Awesome icons */
.icon-box i {
    font-size: 32px;
    color: #0d6efd;
}

/* Remove all shadows */
.icon-box,
.icon-box img,
.icon-box i,
.service-item {
    box-shadow: none !important;
    filter: none !important;
}
/* Service Row */
.service-row {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 14px;
}

/* Icon box */
.service-row-icon {
    min-width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f0f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG */
.service-row-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Font Awesome */
.service-row-icon i {
    font-size: 26px;
    color: #0d6efd;
}

/* Content */
.service-row-content h5 {
    margin-bottom: 6px;
    font-weight: 600;
}

.service-row-content p {
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 14px;
}

.service-row-content a {
    color: #0d6efd;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

/* Remove shadows everywhere */
.service-row,
.service-row-icon {
    box-shadow: none !important;
}

/* ===== Cloud Services – Modern Design ===== */

.cloud-section {
    background: #f8fafc;
}

.cloud-section .section-badge {
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cloud-section h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cloud-section p.lead {
    color: #6c757d;
    max-width: 820px;
    margin: auto;
}

/* Card Design */
.cloud-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cloud-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #4f46e5);
}

.cloud-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.12);
}

/* Icon */
.cloud-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.cloud-icon i {
    font-size: 28px;
    color: #ffffff;
}

/* Title */
.cloud-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

/* Text */
.cloud-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* CTA Section */
.cloud-cta {
    background: linear-gradient(135deg, #0d6efd, #4f46e5);
    color: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
}

.cloud-cta h4 {
    font-weight: 700;
}

.cloud-cta .btn {
    background: #ffffff;
    color: #0d6efd;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 32px;
}

.cloud-cta .btn:hover {
    background: #e9f1ff;
}
<style>
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

/* Stats Section */
.stats-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: white;
}

.process-step {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    padding-bottom: 40px 0;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.d-flex .btn {
    position: relative;
    z-index: 10;
}
.section::before {
    pointer-events: none;
}
.d-flex {
    pointer-events: auto;
}

.btn-build {
    background: linear-gradient(to right, var(--primary-color), #2ecc71);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-build:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
    color: white;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
</style>
/* REMOVE PAGE SIDE GAPS */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* FORCE FOOTER FULL WIDTH */
.footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* REMOVE BOOTSTRAP CONTAINER PADDING */
.footer .container,
.footer .container-fluid {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* FULL WIDTH FOOTER BACKGROUND */
.footer-bg {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);

    background-image: url("../img/world-map.png"); /* your image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;   /* 🔥 THIS makes it full width */
    background-color: #0b0f3b; /* fallback color */

    position: relative;
}

/* Optional: overlay for better text contrast */
.footer-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 60, 0.85);
}

.footer-bg > .container {
    position: relative;
    z-index: 1;
}

