* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
}

/* colors */
:root {
    /* background color */
    --bg-white: #ffffff;
    --bg-dark-blue: #001f3f;
    --bg-deep-teal: #003d5c;
    --bg-light-teal: #00bfa6;
    --bg-pacific-blue: #0092B8;
    --bg-light-mint: #CBFBF1;
    --bg-icy-blue: #CEFAFE;
    --bg-light-gray: #F9FAFB;

    /* text color */
    --text-white: #ffffff;
    --text-light-teal: #00bfa6;
    --text-light-green: #009689;
}

body {
    background: linear-gradient(135deg, var(--bg-dark-blue), var(--bg-deep-teal));
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: var(--bg-white);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.btn-get-started {
    background: linear-gradient(to right, var(--bg-light-teal), var(--bg-pacific-blue));
    color: var(--text-white);
    border-radius: 10px;
    padding: 7px 20px;
    border: none;
    cursor: pointer;
}

.start-project {
    background: linear-gradient(to right, #00BBA7, #00B8DB);
    color: var(--text-white);
    border-radius: 16px !important;
    padding: 7px 20px;
    border: none;
    cursor: pointer;
}

/* .navbar-brand img {
    width: 200px;
    height: auto;
} */

.navbar-brand img {
    max-height: 100px;
    max-width: 100%;
    height: auto;
    width: auto;
}


.custom-btn {
    background: linear-gradient(to right, var(--bg-light-mint), var(--bg-icy-blue));
    color: var(--text-light-teal) !important;
    font-size: 15px !important;
    border-radius: 16px !important;
    padding: 11px 19px !important;
    border: none;
    cursor: pointer;
}

.btn-outline-light {
    border-radius: 16px !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.metrics {
    background: linear-gradient(to right, var(--bg-light-mint), var(--bg-icy-blue));
}

.h2 {
    font-size: 45px !important;
}

.span-color {
    font-size: 45px;
    font-weight: 400;
    line-height: 0;
    color: var(--text-light-teal);
}

.para {
    width: 40% !important;
    font-size: 15px;
    margin: 0 auto !important;
    font-weight: 400;
}

.hero-section {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px;
}

.badge-custom {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white) !important;
    font-size: 0.75rem;
    border-radius: 16px;
}

.hero-heading {
    font-size: 3rem;
}

.brain-icon {
    display: inline-block;
    background: linear-gradient(to right, #AD46FF, #F6339A);
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.brain-icons {
    background: #000000;
    color: var(--text-white) !important;
    padding: 12px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 24px;
}

.globe-icon {
    display: inline;
    background: linear-gradient(to right, #00BBA7, #00B8DB);
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.globe-icons {
    background: #000000;
    color: var(--text-white) !important;
    padding: 12px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 24px;
}

.shield-icon {
    background: linear-gradient(to right, #FF6900, #FB2C36);
    display: inline;
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.shield-icons {
    background: #000000;
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.mobile-button-icon {
    background: linear-gradient(to right, #2B7FFF, #615FFF) !important;
    display: inline;
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.cloud-icon {
    background: linear-gradient(to right, #8E51FF, #AD46FF);
    display: inline;
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.cloud-icons {
    background: #000000;
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

.database-icon {
    background: linear-gradient(to right, #00C950, #00BC7D);
    display: inline;
    color: var(--text-white) !important;
    padding: 16px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
}

/* Container */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track (sliding part) */
.slider-track {
    display: flex;
    width: 300%;
    animation: slide 15s infinite;
}

/* Animation Keyframes */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(0);
    }

    36% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-100%);
    }

    69% {
        transform: translateX(-200%);
    }

    99% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

.highlight-text {
    background: linear-gradient(to right, #46ECD5, #53EAFD, #8EC5FF);
    font-size: 85px;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(to right, #46ECD5, #53EAFD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 27.02px;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* ab wrap hoga mobile par */
    gap: 10px;
}

.counter-box {
    flex: 1;
    /* desktop par equal space */
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    min-width: 0;
}

.counter-box i {
    font-size: 2rem;
    /* display: block; */
    margin-bottom: 5px;
}

.counter-box strong {
    font-size: 1.5rem;
}

.navbar-nav a:hover {
    color: #00c49a !important;
}

.explore-feature {
    background: linear-gradient(to right, var(--bg-light-teal), var(--bg-pacific-blue));
    color: var(--text-white) !important;
    border-radius: 20px !important;
    padding: 7px 15px !important;
    border: none;
    cursor: pointer;
}

.text-style {
    color: red !important;
}

/* slider */
.success-section {
    text-align: center;
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.badge {
    display: inline-block;
    background: linear-gradient(to right, #CBFBF1, #CEFAFE);
    color: #00786F !important;
    padding: 16px 20px !important;
    border-radius: 16px !important;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 20px;
}

.heading {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.heading span {
    color: #00aab4;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #0c1a2b;
    width: 100px;
}

.icon-circle {
    background: linear-gradient(to right, #00BBA7, #00B8DB);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-circle i {
    color: #fff;
    font-size: 24px;
}

.stat-box strong {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #333;
}

.subtitlle {
    background: var(--bg-light-gray);
}

.textcolor {
    color: var(--text-light-green);
    font-weight: 400;
}

.testimonial-card {
    position: relative;
    background: #fff;
    width: calc(33.333% - 14px);
    /* 3 cards with gap */
    min-width: calc(33.333% - 14px);
    /* Ensure 3 cards width */
    max-width: 350px;
    /* Maximum width per card */
    padding: 30px 20px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    flex-shrink: 0;
}

.testimonial-card .star,
.testimonial-card .stars {
    color: #ffc107;
    font-size: 16px;
    padding-bottom: 15px;
    font-weight: bold;
    text-align: left;
}

.testimonial-card .star span,
.testimonial-card .stars span {
    color: #333;
    margin-left: 8px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}

.project-box {
    background: linear-gradient(to right,
            var(--bg-light-mint),
            var(--bg-icy-blue));
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-light-green);
    font-weight: 500;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.client-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex: 1;
}

.avatar {
    background: linear-gradient(to right,
            var(--bg-light-teal),
            var(--bg-pacific-blue));
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-info div:last-child {
    line-height: 1.4;
}

.client-info strong {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.client-info span {
    font-size: 12px;
    color: #666;
    display: block;
    margin: 2px 0;
}

.client-info a {
    color: var(--text-light-teal);
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}

.client-info a:hover {
    color: var(--text-light-green);
}

.industry {
    text-align: right;
    font-size: 12px;
    color: #777;
    flex-shrink: 0;
}

.industry strong {
    color: #333;
    display: block;
    font-weight: 600;
    margin-top: 2px;
}

.slider-controls {
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slider-btn {
    background: none;
    border: 2px solid var(--bg-light-teal);
    color: var(--bg-light-teal);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--bg-light-teal);
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dots-container {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--bg-light-teal);
    transform: scale(1.2);
}

.cta-button {
    background: linear-gradient(to right,
            var(--bg-light-teal),
            var(--bg-pacific-blue));
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 187, 167, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 187, 167, 0.4);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(to bottom, #0a1a2f, #0d223d);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
}

.about-hero p {
    max-width: 650px;
    margin: 10px auto 0;
    color: #cfd6e0;
    font-size: 1rem;
}

.tagline {
    background: rgba(0, 196, 154, 0.1);
    color: #00c49a;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.mission-section {
    padding: 100px 0;
}

.mission-section p {
    color: #4b5563;
}

.mission-section ul {
    margin-top: 15px;
    padding-left: 20px;
}

.mission-section ul li {
    margin-bottom: 8px;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-top-right,
.badge-bottom-left {
    position: absolute;
    background: white;
    color: #0a1a2f;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-top-right {
    top: 20px;
    right: 20px;
}

.badge-bottom-left {
    bottom: 20px;
    left: 20px;
}

.badge-top-right span {
    color: #00c49a;
    font-weight: 700;
    font-size: 1.2rem;
}

.badge-bottom-left span {
    color: #00c49a;
    font-weight: 700;
    font-size: 1.2rem;
}

/* .star-content {
  background: linear-gradient(to bottom, #003131, #0c1a22);
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: sans-serif;
} */

.stars {
    position: absolute;
    top: 15px;
    left: 27%;
    transform: translateX(-50%);
    color: #ffc107;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

/* .star {
  position: absolute;
  font-size: 16px;
  color: #00f9f9;
  opacity: 0.6;
  animation: twinkle 2s infinite ease-in-out alternate;
} */

/* .star::before {
  content: "✦";
} */

.tag {
    color: var(--text-light-green);
    font-weight: 400;
}

.layout {
    width: 511px;
    height: 336px;
    background: linear-gradient(to bottom, #F1F5F9, #E2E8F0);
    border-radius: 20px;
    position: relative;
    overflow: visible;
}

.layout img {
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    object-fit: cover;
    border-radius: 16px;
    margin: 40px;
}

.top-right,
.bottom-left {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: sans-serif;
    text-align: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-right {
    top: -10px;
    right: -25px;
}

.bottom-left {
    bottom: -10px;
    left: -25px;
}

.value {
    font-size: 20px;
    font-weight: bold;
    color: #0ea5e9;
}

.label {
    font-size: 14px;
    color: #334155;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    color: #ccc;
}

.badge-customs {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white) !important;
    font-size: 0.75rem;
    border-radius: 16px;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #0a1a2f, #0d223d);
    color: #cfd6e0;
    font-size: 0.9rem;
    padding: 4rem 0 2rem;
    width: 100%;
}

footer h5,
footer h6 {
    color: #fff;
    font-weight: 600;
}

footer .icon-box {
    background: linear-gradient(to right, #00bba7, #00b8db);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    margin-right: 10px;
    flex-shrink: 0;
}

footer .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

footer .contact-info span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

footer .contact-info strong {
    font-size: 0.8rem;
    color: #9ca3af;
}

.badge-box {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.badges {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 12px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.badges i {
    font-size: 12px;
    color: #00f7ff;
    margin-bottom: 5px;
}

.badges span {
    font-size: 9px;
    font-weight: 300;
}

footer ul li a {
    text-decoration: none;
    color: #cfd6e0;
    line-height: 28px;
}

footer ul li a:hover {
    color: #00c49a;
}

footer .subscribe-input {
    background-color: transparent;
    border: 1px solid #4b5563;
    width: 100%;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

footer .subscribe-input::placeholder {
    color: #9ca3af;
}

footer .btn-subscribe {
    background-color: #009689;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #1c2b3e;
    color: #cfd6e0;
    font-size: 1rem;
    transition: 0.3s;
    text-decoration: none;
}

footer .social-icons a:hover {
    background-color: #00c49a;
    color: white;
}

footer hr {
    border-color: #2d3748;
}

/* RESPONSIVE DESIGN */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .highlight-text {
        font-size: 90px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .hero-section {
        width: 60%;
    }

    .para {
        width: 50% !important;
    }

    .h2 {
        font-size: 40px !important;
    }

    .span-color {
        font-size: 40px;
    }

    .highlight-text {
        font-size: 75px;
    }
}

/* Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-section {
        width: 70%;
        padding: 80px 20px;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 65px;
    }

    .para {
        width: 60% !important;
    }

    .h2 {
        font-size: 35px !important;
    }

    .span-color {
        font-size: 35px;
    }

    .stats {
        gap: 40px;
    }

    .layout {
        width: 100%;
        max-width: 450px;
        height: 300px;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .testimonial-card {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hero-section {
        width: 80%;
        padding: 60px 20px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .highlight-text {
        font-size: 55px;
    }

    .para {
        width: 70% !important;
    }

    .h2 {
        font-size: 30px !important;
    }

    .span-color {
        font-size: 30px;
    }

    .heading {
        font-size: 28px;
    }

    .stats {
        gap: 30px;
    }

    .stat-box {
        width: 80px;
    }

    .testimonial-card {
        width: 280px;
    }

    .layout {
        width: 100%;
        max-width: 400px;
        height: 280px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .star-content {
        height: 80vh;
        padding: 20px;
    }

    /* .badges {
        width: 70%;
        margin: 5px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    } */

    .busniess .strategy h1 {
        font-size: 2rem;
    }

    .busniess .strategy p {
        width: 70% !important;
    }

}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        width: 90%;
        padding: 50px 15px;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .highlight-text {
        font-size: 45px;
    }

    .badge-box {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .badges {
        flex-direction: row;
        gap: 5px;
        padding: 6px 10px;
    }

    .para {
        width: 85% !important;
        font-size: 14px;
    }

    .h2 {
        font-size: 26px !important;
    }

    .span-color {
        font-size: 26px;
    }

    .heading {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
        max-width: 90%;
    }

    .stats {
        gap: 20px;
    }

    .stat-box {
        width: 70px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle i {
        font-size: 20px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 300px;
    }

    .counter-box {
        text-align: center;
        flex: 0 0 calc(50% - 10px);
        /* har row me 2 box */
    }

    .counter-box i {
        font-size: 1.2rem;
    }

    .counter-box strong {
        font-size: 1rem;
    }

    .gradient-text {
        font-size: 22px;
    }

    .layout {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .layout img {
        margin: 30px;
        width: calc(100% - 60px);
        height: calc(100% - 60px);
    }

    .top-right,
    .bottom-left {
        padding: 8px 12px;
    }

    .top-right {
        top: -15px;
        right: -15px;
    }

    .bottom-left {
        bottom: -15px;
        left: -15px;
    }

    .value {
        font-size: 16px;
    }

    .label {
        font-size: 12px;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .star-content {
        height: 70vh;
        padding: 20px;
    }

    .stars {
        left: 50%;
    }

    .badge-customs,
    .badge-custom {
        font-size: 0.7rem;
        padding: 8px 15px;
    }

    .busniess .strategy h1 {
        font-size: 1.8rem;
    }

    .busniess .strategy p {
        width: 90% !important;
        font-size: 14px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }

    .start-project,
    .btn-get-started {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .custom-btn {
        font-size: 13px !important;
        padding: 8px 15px !important;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) {
    .hero-section {
        width: 95%;
        padding: 40px 10px;
    }

    .hero-heading {
        font-size: 1.5rem;
    }

    .highlight-text {
        font-size: 35px;
    }

    .para {
        width: 95% !important;
        font-size: 13px;
    }

    .h2 {
        font-size: 22px !important;
    }

    .span-color {
        font-size: 22px;
    }

    .heading {
        font-size: 20px;
    }

    .description {
        font-size: 13px;
        max-width: 95%;
    }

    .stats {
        gap: 15px;
    }

    .stat-box {
        width: 60px;
    }

    .stat-box strong {
        font-size: 14px;
    }

    .stat-label {
        font-size: 12px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
    }

    .icon-circle i {
        font-size: 18px;
    }

    .testimonials-slider {
        width: 100%;
        max-width: 400px;
    }

    .testimonial-card {
        padding: 18px 12px 12px;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .industry {
        text-align: left;
    }

    .counter-box {
        padding: 10px;
        margin: 3px;
    }

    .gradient-text {
        font-size: 18px;
    }

    .layout {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .layout img {
        margin: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.8rem;
        padding: 0 15px;
    }

    .star-content {
        height: 60vh;
        padding: 15px;
    }

    .busniess .strategy h1 {
        font-size: 1.5rem;
    }

    .busniess .strategy p {
        width: 95% !important;
        font-size: 13px;
    }

    .brain-icons,
    .globe-icons,
    .cloud-icons {
        padding: 8px !important;
        font-size: 20px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .hero-section {
        padding: 30px 5px;
    }

    .hero-heading {
        font-size: 1.3rem;
    }

    .highlight-text {
        font-size: 28px;
    }

    .h2 {
        font-size: 18px !important;
    }

    .span-color {
        font-size: 18px;
    }

    .heading {
        font-size: 18px;
    }

    .para {
        font-size: 12px;
    }

    .description {
        font-size: 12px;
    }

    .stats {
        gap: 10px;
    }

    .stat-box {
        width: 50px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .icon-circle i {
        font-size: 16px;
    }

    .testimonials-slider {
        width: 100%;
        max-width: 350px;
    }

    .testimonial-card {
        padding: 16px 10px 10px;
    }

    .gradient-text {
        font-size: 16px;
    }

    .layout {
        max-width: 280px;
        height: 180px;
    }

    .top-right,
    .bottom-left {
        padding: 6px 10px;
    }

    .value {
        font-size: 14px;
    }

    .label {
        font-size: 10px;
    }

    .content h1 {
        font-size: 1.3rem;
    }

    .content p {
        font-size: 0.75rem;
        padding: 0 10px;
    }

    .star-content {
        height: 50vh;
        padding: 10px;
    }

    .busniess .strategy h1 {
        font-size: 1.3rem;
    }

    .busniess .strategy p {
        font-size: 12px;
    }

    .brain-icons,
    .globe-icons,
    .cloud-icons {
        padding: 6px !important;
        font-size: 18px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .btn-get-started,
    .start-project {
        padding: 8px 15px;
        font-size: 12px;
    }

    .custom-btn {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
}


/* Counter Animation Responsive */
@media (max-width: 767px) {
    .row.justify-content-center .col-6.col-md-2 {
        flex: 0 0 auto;
        width: 30%;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .row.justify-content-center .col-6.col-md-2 {
        width: 45%;
    }
}

/* Technology Cards Responsive */
@media (max-width: 767px) {
    .col-md-6 {
        margin-bottom: 20px;
    }
}

/* Services Cards Responsive */
@media (max-width: 767px) {
    .col-md-4 {
        margin-bottom: 20px;
    }
}

/* Testimonials Responsive */
@media (max-width: 767px) {
    .testimonials-slider {
        width: 95%;
        max-width: 500px;
    }

    .testimonial-card {
        width: 100%;
        /* 1 card on mobile */
        min-width: 100%;
        padding: 20px 14px 14px;
    }

    .testimonials-track {
        gap: 0;
        /* No gap on mobile */
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Footer Responsive */
@media (max-width: 767px) {

    footer .col-lg-3,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }
}

/* About Page Mission Section Responsive */
@media (max-width: 767px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-section .col-md-6 {
        margin-bottom: 30px;
    }

    .mission-section .col-md-6:first-child {
        order: 2;
    }

    .mission-section .col-md-6:last-child {
        order: 1;
    }
}

/* Navbar Responsive Fixes */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 15px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .btn-get-started {
        margin-top: 15px;
        width: 100%;
    }
}

/* Button Group Responsive */
@media (max-width: 575px) {
    .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        align-items: center;
    }

    .d-flex.justify-content-center.gap-3 a {
        width: 80%;
        text-align: center;
        margin-bottom: 10px;
    }


}

/* Fix for small screens - overflow issues */
@media (max-width: 479px) {
    body {
        overflow-x: hidden;
    }

    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row>* {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    footer,
    .btn,
    button {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero-section,
    .star-content {
        background: white !important;
        color: black !important;
    }
}
