/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    text-align: left;
    font-family: "Open Sans", Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8625;
}

/* Topbar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001f3f;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.topbar.hidden {
    display: none;
    transform: translateY(-100%);
}

/* When topbar is hidden, navbar starts at the very top */
.topbar.hidden + .navbar {
    top: 0 !important;
}

/* Social Icons */
.topbar .social-icons a {
    color: #001f3f;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    font-size: 18px;
    margin-left: 5px;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}

.topbar .social-icons a:hover {
    color: #fff;
    background-color: #001f3f;
    border: 2px solid #fff;
}


.topbar .contact-info a {
    color: #fff;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
}

.topbar .contact-info a i {
    margin-right: 5px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(235, 223, 214, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 15px 25px;
    position: fixed;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    transition: top 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
}

@media (max-width: 420px) {

    .navbar,
    .navbar-about {
        top: 0;
        /* Keep navbar at the top */
    }
   

    .navbar,
    .navbar-about .navbar-brand .logo {
        width: 150px;
    }

}


.navbar .menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    order: 3;
    margin-right: 10px;
    font-size: 30px;
    margin-left: 10px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;

}

.navbar .nav-links li {
    margin: 0 15px;
    position: relative;
}

.navbar .nav-links li a {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar .nav-links li span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    height: 47px;
    width: 100%;
    background-color: transparent;
}

.navbar .nav-links li span::after {
    font-size: 15px;
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
}

.navbar .nav-links li a:hover {
    color: #ff8625;
}

.navbar .get-estimation-btn {
    background-color: #ff8625;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 20px 20px;
    margin-left: 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navbar .get-estimation-btn:hover {
    background-color: #cc5200;
}

/* Sidebar */

.side-nav {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #001f3f;
    color: #fff;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
    opacity: 0;
    z-index: 1100;
    padding-top: 60px;
    border-bottom: 1px solid #ddd;
    will-change: left, opacity;
}

.side-nav.show {
    left: 0;
    opacity: 1;
}

.side-nav .close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.side-nav ul {
    list-style: none;
    /* border-top: 1px solid #ddd; */
    padding: 0;
}

.side-nav ul li {
    margin: 15px 0;
    border-bottom: 1px solid #ddd;
}

.side-nav ul li a {
    color: #fff;
    font-size: 18px;
    display: block;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.side-nav ul li a:hover {
    color: #ff8625;
    font-weight: 600;
}

.side-nav ul li .dropdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
    display: block;
    list-style: none;
    padding-left: 10px;
    padding: 5px;
    margin: 0;
}

.side-nav ul li .dropdown.open {
    max-height: 500px;
    opacity: 1;
}

.side-nav .dropdown li {
    margin: 5px 0;
}

.side-nav ul li .dropdown li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 10px;
    width: 1px;
    background-color: #ccc;
}

.side-nav .dropdown li {
    border-bottom: none;
}

.side-nav ul li .dropdown li a {
    padding: 8px 15px;
    font-size: 15px;
    color: #fff;
    display: block;
}

.active {
    color: #ff8625 !important;
}

.side-nav ul li .dropdown li a:hover {
    background-color: #555;
}

/* .dropdown-toggle.active+.dropdown {
    display: block !important;
} */

.dropdown-toggle {
    display: flex;
    /* Use flexbox for proper alignment */
    justify-content: space-between;
    /* Push items to edges */
    align-items: center;
    /* Vertically align text and icon */
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    font-size: 16px;
}

@media (min-width:768px) {
    .navbar .navbar-brand .logo {
        width: 300px;
        align-items: center;
        display: flex;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -120px;
    width: 650px;
    margin-top: 32px;
    background-color: #fff;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}


.dropdown-menu.show {
    display: flex;
}

.hero {
    margin-top: 85px;
    width: 100%;
    align-items: center;
}

.hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.hero-cont {
    position: relative;
}

.hero-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-actions h1 {
    font-size: 3rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-actions a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: white;
    background-color: orange;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-actions a:hover {
    background-color: darkorange;
}

/* Dropdown Left Section */
.dropdown-left {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-right: 1px solid #ddd;
}

.dropdown-sol {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-right: 1px solid #ddd;
}

.dropdown-left ul,
.dropdown-sol ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-left li,
.dropdown-sol li {
    padding: 7px 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

#dropdown-menu ul li a,
.dropdown-left ul li a,
.dropdown-middle ul li a,
.dropdown-sol ul li a {
    font-size: 14px;
}

.dropdown-left ul li a,
.dropdown-sol ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* For active and hover states: Background and text color */
.dropdown-left li.active,
.dropdown-sol li.active,
.dropdown-left li:hover,
.dropdown-left li:hover,
.dropdown-sol li:hover,
.dropdown-sol li:active {
    background-color: #fcebdd;
    color: #000;
}

/* Link hover color */
.dropdown-left li a:hover,
.dropdown-middle li a:hover,
.dropdown-sol li a:hover {
    color: #ff8625 !important;
}


.dropdown-left li a {
    text-decoration: none;
    color: #333;
}

.dropdown-left li.active a,
.dropdown-left li:hover a,
.dropdown-middle li:hover a {
    color: #ff8625;
}

/* Middle Section */
.dropdown-middle {
    width: 50%;
    border-right: 1px solid #ddd;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dropdown-middle ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-middle li {
    padding: 5px 15px;
    cursor: pointer;
    /* border-bottom: 1px solid #f0f0f0; */
    transition: background 0.3s;
}

.dropdown-middle li:hover {
    background-color: #fcebdd;
}

.dropdown-middle a {
    text-decoration: none;
    color: #333;
}


/* Dropdown text section */
.dropdown-text {
    position: absolute;
    top: 40%;
    left: 20px;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 1;
}

.dropdown-text h3 {
    font-size: 1em;
    color: white;
    font-weight: 100;
    font-size: 25px;
}

.dropdown-text h3 span {
    color: #ff8625;
    font-weight: 700;
    font-size: 35px;
}

.line1 {
    font-size: 0.90em;
    color: white;
    margin-bottom: 6px;
}

.line2 {
    font-size: 1.1em;
    color: white;
}

.get-quote-btn {
    padding: 15px 25px;
    background-color: #ff9900;
    border: none;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 25px;
}

.get-quote-btn:hover {
    background-color: #cc7a00;
    /* Darken button on hover */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: flex;
    pointer-events: auto;
}

.dropdown:hover .serv-menu,
.serv-menu:hover {
    display: flex;
    pointer-events: auto;
}

.hero h1 {
    line-height: 1.2 !important;
}

.section {
    padding: 50px;
    max-width: 1350px;
    margin: 0 auto;
}

.heading {
    font-size: 35px;
    margin-bottom: 20px;
}

.heading .blue {
    color: #1a2a42;
    font-weight: 100;
}

.heading .orange {
    color: #FF6A00;
    font-weight: bold;
}

/* Paragraph Styles */
.description {
    margin-bottom: 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* Horizontal List */
.list-container {
    text-align: center;
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 130px;
    font-weight: bold;
    color: #aaa;
}

.services-list li {
    cursor: pointer;
    font-size: 18px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #9f9f9f;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.services-list li.active {
    color: #000;
    border-bottom: 2px solid #FF6A00;
    padding-bottom: 5px;
}

span#service-btn {
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

span#service-btn:hover {
    color: #FF6A00;
}

/* Content Section (Image + Text) */
.content-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.single-logo-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

/* .single-logo-image img {
    max-width: 100%;
    height: auto;
    border: none !important;
    width: 80% !important;
    te
    object-fit: contain;
}
.image-column img {
    max-width: 100%;

} */

.text-column {
    flex: 1;
}

.service-heading {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 17px;
}


/* Services Wrapper */
.services-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.services-column {
    flex: 1;
}

.services-column ul {
    list-style: none;
    padding: 0;
}

.services-column li {
    font-size: 17px;
    margin-bottom: 15px;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
}

.services-column li i {
    color: #FF6A00;
    margin-right: 8px;
    font-size: 16px;
}

/* Explore More */
.explore-more {
    margin-top: 25px;
}

.explore-link {
    color: red;
    text-decoration: none;
    font-size: 17px;
}

.explore-link .icon {
    font-size: 16px;
    margin-left: 5px;
}

/* Section Container */
.partner-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
}

/* Left Content */
.partner-content {
    flex: 1;
    max-width: 45%;
}

.partner-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}


.benefits-list li i {
    color: #FF6A00;
    margin-right: 10px;
    font-size: 10px;
}

.light-font {
    font-weight: 100;
    font-size: 32px;
    color: #000;
}

.highlight {
    font-weight: bold;
    color: #ff8625;
    font-size: 36px;
}

/* Logos Section */
.partner-logos {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
}

.partner-description {
    padding-bottom: 25px;
    line-height: 30px;
    color: #645e7a;
    letter-spacing: 1px;
}

.logo-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
    margin-bottom: 20px;
}

.row-1 {
    animation-name: scroll-right;
    animation-duration: 20s;
}

.row-2 {
    animation-name: scroll-left;
    animation-duration: 20s;
}

.row-3 {
    animation-name: scroll-right;
    animation-duration: 20s;
}

.row-4 {
    animation-name: scroll-left;
    animation-duration: 20s;
}

.logo-row img,
.partner-logos img {
    width: 170px;
    height: auto;
    border: 1px solid #ccc;
    margin: 0 5px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 5px;
    transition: all 0.3s ease;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-row:hover {
    animation-play-state: paused;
}

/* Awards Section */
.awards-section {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awards-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Animation for moving right */
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Animation to scroll continuously to the left */
@keyframes scroll-left {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-row::after {
    content: '';
    display: inline-block;
    width: 100%;
}

/* Modes of Communication Section */
.modes-of-communication {
    text-align: center;
    padding: 20px;
    background-color: #fbfbfb;
}

.modes-of-communication h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.modes-of-communication h2 span {
    color: #ff8625;
}

.communication-icons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.communication-icon {
    background: #ffffff;
    padding: 15px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.communication-icon img {
    width: 48px;
    height: 48px;
    display: block;
}

/* Portfolio Section */
.portfolio {
    text-align: center;
    background-color: #fbfbfb;
    /* max-width: 1350px; */
    padding: 40px 50px;
}

.portfolio h2 {
    font-size: 35px;
    margin-bottom: 10px;
    text-align: left;
    /* margin-left: 60px; */
}

.portfolio h2 span {
    color: #ff8625;
}

.portfolio p {
    margin: 10px auto;
    font-size: 18px;
    line-height: 1.5;
    color: #645e7a;
    text-align: left;
}

.portfolio-cards {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 20px;
}

.portfolio h3 {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    /* margin-left: 60px; */
    text-align: left;
}

.light-weight {
    font-weight: 400;
}

.card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 7px 30px -10px rgba(224, 149, 51, 0.6);
    overflow: hidden;
    max-width: 300px;
    transition: transform 0.3s ease;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
}

.card:hover img {
    transform: scale(1.1);
}

/* View More Button */
.view-more {
    margin-top: 20px;
}

.view-more button {
    background-color: #ff8625;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-more button:hover {
    background-color: #ff7b00;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}




/* content container */
.content-container {
    max-width: 1350px;
    margin: 0 auto;
    justify-content: center;
}

.cont-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 10px;

}

.content {
    max-width: 600px;
}

.content h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.content h1 span {
    color: #ff8625;
}

.content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.image-container img {
    max-width: 600px;
    border-radius: 10px;
}


/* Idea Section Styles */
.idea-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../images/bigEmpire-back-1440x231.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 80px;
    color: #ffffff;
    height: 250px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 37, 65, 0.9);
    z-index: 1;
}

/* Content Area */
.idea-content {
    max-width: 60%;
    z-index: 2;
    position: relative;
}

.idea-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.idea-subtext {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.idea-guarantee {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6a00;
}

/* Button Styles */
.idea-button {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
}

.cta-button {
    background-color: #ff8625;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e85a00;
}

/* workflow section */

.workflow-section {
    text-align: center;
    padding: 50px 20px;
}

.workflow-section h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.workflow-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workflow-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-bottom: 5px solid;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-card:nth-child(odd) {
    border-bottom-color: #ff8625;
    /* Red border for odd cards */
}

.workflow-card:nth-child(even) {
    border-bottom-color: #001f3f;
    /* Black border for even cards */
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.workflow-card img {
    width: 60px;
    margin-bottom: 20px;
}

.workflow-card h3 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 10px;
}

.workflow-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* footer section */
.footer {
    background-color: #f5f5ff;
    padding: 40px 60px;
    color: #333;
    padding-bottom: 5px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-about {
    flex: 1 1 25%;
    max-width: 400px;
}

.footer-about h1 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.footer-about span {
    color: #f45b69;
}

.footer-links {
    /* flex: 1 1 50%; */
    display: flex;
    gap: 40px;
}

.link-group h2 {
    font-size: 20px;
    color: #222;
    font-weight: 500;
    margin-bottom: 10px;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: 8px;
}

.link-group ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.link-group ul li a:hover {
    color: #f45b69;
}

.footer-social {
    flex: 1 1 25%;
    text-align: center;
}

.footer-social h2 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    flex: 1 1 auto;
    text-align: center;
    font-size: 15px;
    color: #777;
}

@media screen and (max-width: 1440px) {
    .brand-story {
        max-width: 100% !important;
    }
}

/* Hamburger menu only visible on screens 1025px and below */
@media screen and (max-width: 1025px) {
    .navbar .menu-toggle {
        display: block;
    }
    .navbar .get-estimation-btn {
        margin-left: 370px;
    }
    .services-grid {
        max-width: 100% !important;
        overflow-x: hidden !important;
        /* Keep original grid columns for feature boxes */
    }
    .service-item:nth-last-child(2) {
    grid-column: 3 / span 1 !important;
}

.service-item:last-child {
    grid-column: 2 / span 1 !important;
}

}
/* @media  (max-width: 1025px){
    .navbar .get-estimation-btn {
        margin-left: 350px !important;
    }
} */
/* Responsive Design */
@media screen and (max-width: 1025px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: sticky;
        top: 0;
    }

    .navbar .nav-links {
        display: none;
    }

    .side-nav {
        display: block;
    }

    .services-list {
        gap: 50px;
    }

    .content-container {
        gap: 20px;
    }

    .services-wrapper {
        gap: 5px;
    }
.image-container img{
    max-width: 524px;
}
    .section {
        padding: 30px;
    }

    .hero {
        margin-top: 0;
    }

    .content-container {
        padding: 0px !important;
    }

    .erp-container {
        padding: 50px 50px !important;
    }

    .custom-app-development {
        margin-top: 0px !important;
    }

    .custom-app-development1 {
        margin-top: 0px !important;
    }

    .highlight {
        font-size: 30px !important;
    }

    .content {
        max-width: 450px !important;
    }

    .content-container {
        padding: 20px !important;
    }

    .content p {
        font-size: 1.1rem !important;
    }

    .idea-button {
        max-width: 20% !important;
    }

    .idea-content {
        max-width: 80% !important;
    }

    .workflow-cards {
        grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
        margin: 20px;
    }

    .portfolio-container {
        margin-top: 40px !important;
        gap: 40px !important;
    }

    .view-more-btn {
        padding: 15px 30px !important;
    }


    .footer-about {
        margin-right: 30px !important;
    }

    .footer-container {
        flex-wrap: nowrap !important;
    }

    .about-container {
        margin-top: 40px !important;
        padding-bottom: 0px !important;
    }

    .brand-story {
        margin-top: 18px !important;
    }

    .services-section1 {
        padding: 0px !important;
        margin-top: 0px !important;
    }

    .phone-image {
        max-width: 450px !important;
    }

    .btns.orange {
        margin-bottom: 10px;
    }

    .services-section1 .container {
        padding: 60px !important;
    }
}

.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.logos img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logos img:hover {
    transform: scale(1.1);
}

.text-section {
    max-width: 20%;
    text-align: left;
}

.text-section h2 {
    font-size: 20px;
    color: #0a1128;
    margin: 0;
    line-height: 1.5;
}

.text-section h2 span {
    color: #f4862c;
    font-weight: bold;
}

.divider {
    width: 1px;
    height: 100px;
    background-color: #0a1128;
}


.dropdown-icon {
    display: none;
}

.dropdown-content {
    display: block;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    text-align: left;
}



@media screen and (max-width: 768px) {
    .topbar {
        display: none;
    }
    .topbar.hidden {
        display: none;
        transform: none !important;
    }
.services-section{
    padding: 20px 65px !important;
}
    .navbar {
        background: #ffffff;
        top: 0 !important;
        transform: none !important;
    }

    .hero {
        padding: 100px 20px;
        padding-bottom: 70px;
    }
  .navbar .get-estimation-btn {
        margin-left: 167px;
    }
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar .menu-toggle {
        display: block;
    }

    .hero .container {
        padding: 20px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero {
        padding-bottom: 10px;
    }

    .services-list {
        flex-wrap: wrap !important;
        margin-left: 40px;
        margin-right: 40px;
        gap: 20px !important;
    }

    .content-container {
        display: grid !important;
    }

    .image-column img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .partner-content {
        max-width: 100% !important;
    }

    .partner-section {
        display: grid !important;
        padding: 30px !important;
    }

    .highlight {
        font-size: 2.3rem !important;
    }

    .modes-of-communication h2 {
        font-size: 25px !important;
    }

    .services-wrapper {
        gap: 15px !important;
    }

    .portfolio {
        padding: 40px 40px !important;
    }

    .cont-section {
        margin-top: 0px !important;
    }

    .content {
        max-width: 380px !important;
    }

    .content h1 {
        font-size: 2.3rem !important;
    }

    .idea-heading {
        font-size: 2.1rem !important;
    }

    .brand-story {
        margin-top: 100px !important;
    }

    .blog-card {
        width: 48% !important;
    }

    .text-section {
        max-width: 100%;
    }

    .text-section h2 {
        font-size: 30px;
        text-align: center;
    }

    .footer-about {
        max-width: 100% !important;
    }

    .footer-about p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mobile-develop {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .cont-section {
        display: grid;
    }

    .footer {
        padding: 40px 20px !important;
    }

    .footer-about img {
        width: 60% !important;
    }

    .footer-about p {
        font-size: 18px;
    }

    .footer-links {
        display: block;
    }

    .footer-links .link-group {
        margin-bottom: 20px;
    }

    .dropdown-header {
        cursor: pointer;
        margin: 0;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        color: #00ffff;
    }

    .dropdown-content {
        display: none;
        list-style: none;
        padding: 10px 0;
        margin: 0;
    }

    .dropdown-content li {
        margin-bottom: 5px;
    }

    .dropdown-content li a {
        text-decoration: none;
        color: #0a1128;
        font-size: 16px;
    }

    .dropdown-content li a:hover {
        color: #007bff;
    }

    .dropdown-icon {
        font-size: 14px;
        display: inline-block;
        /* margin-left: 10px; */
        transition: transform 0.3s ease;
    }

    .dropdown-header.open .dropdown-icon {
        transform: rotate(180deg) !important;
        transition: transform 0.3s ease;
    }

    .footer-container {
        display: grid;
    }

    .social-icons {
        font-size: 26px;
    }

    .affiliated-services {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .services-section1 {
        padding: 0px !important;
        margin-top: 70px !important;
    }

    .services-section h1 {
        font-size: 2.2rem !important;
    }

    .services-list1 ul {
        flex: 0px !important;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(198px, 1fr)) !important;
    }

    .about-container {
        margin-top: 120px !important;
        display: block !important;
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .portfolio-container {
        margin-top: 112px !important;
    }

    .port-card {
        width: 350px !important;
    }

    .story-content {
        display: block !important;
    }

    .story-content img {
        width: 100% !important;
    }

    .services-section1 {
        padding: 0px !important;
        margin-top: 70px !important;
    }

    .services-section h1 {
        font-size: 2.2rem !important;
    }

    .services-list1 ul {
        flex: 0px !important;
    }

    .content {
        max-width: 100% !important;
    }

    .custom-app-development,
    .custom-app-development1 .container {
        padding: 10px !important;
    }

    .image-mobile {
        display: none !important;
    }

}

@media (min-width:320px) and (max-width: 360px) {
    .port-card {
        width: 310px !important;
        padding: 10px !important;
    }

    .contact-form {
        width: 300px !important;
    }
}

@media (min-width:320px) and (max-width:765px) {
    .services-grid {
        max-width: 100% !important;
        overflow-x: hidden !important;
        /* Keep original grid columns for feature boxes */
    }
    .navbar .get-estimation-btn {
        padding: 12px 12px;
        font-size: 11px;
        font-weight: 600;
    }
      .navbar .get-estimation-btn {
        margin-left: 20px;
    }

    .navbar .menu-toggle {
        font-size: 20px;
    }

    .navbar {
        padding: 10px 10px !important;
    }

    .custom-app-development {
        margin-top: 70px !important;
    }

    .custom-app-development {
        margin-top: 0px !important;

    }

    .service-item {
        margin-top: 10px;
    }

    .contact-section {
        padding: 15px 0px !important;
    }

    .service-item1 {
        margin-top: 10px;
    }

    .erp-content p {
        font-size: 0.95rem !important;
        margin-bottom: 10px;
    }

    .erp-content h1 {
        text-align: left !important;
    }

    .navbar .navbar-brand .logo {
        width: 140px;
    }

    .map-container .row {
        display: grid !important;
    }

    .company-details video.contact-icon {
        display: none;
    }

    .map-container .col-6 {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .map-container {
        width: 100% !important;
    }

    .company-details {
        padding: 0px !important;
        text-align: left !important;
    }

    .hero {
        padding: 60px 10px !important;
        padding-bottom: 0px !important;
    }

    .brand-story {
        margin-top: 50px !important;
    }

    .brand-story h2 {
        font-size: 1.8rem !important;
    }

    .brand-story h2 .highlight {
        font-size: 1.8rem !important;
    }

    .hero h1 {
        font-size: 30px !important;
        margin-bottom: 20px;
        letter-spacing: 1px;
        line-height: 43px;
        font-weight: 200;
    }

    .hero .row {
        flex-direction: column;
    }

    .content-container {
        padding: 0px !important;
    }

    .design-container {
        gap: 10px !important;
    }

    .erp-container {
        padding: 20px 20px !important;
    }

    .erp-content p {
        text-align: left !important;
    }

    /* .services-section{
    margin-top: 60px;
   }
    */
    /* .service-item{
    margin-bottom: 20px;
} */
    .service-item:nth-last-child(2) {
        justify-self: left !important;
    }

    .service-item:last-child {
        justify-self: left !important;
    }

    .section {
        padding: 20px !important;
    }

    .service-heading {
        font-size: 22px !important;
        margin-top: 15px;
        margin-bottom: 5px !important;
    }

    .services-column li {
        font-size: 15px !important;
    }

    .light-font {
        font-size: 28px !important;
    }

    .highlight {
        font-size: 26px !important;
    }

    .benefits-list li {
        font-size: 15px !important;
    }

    .highlight {
        font-size: 1.8rem !important;
    }

    .contact-form {
        width: 310px !important;
    }

    .plans-container {
        display: flex !important;
    }

    .heading {
        font-size: 30px;
    }

    .modes-of-communication h2 {
        font-size: 24px !important;
    }

    .communication-icons-container {
        flex-wrap: nowrap !important;
        gap: 20px !important;
    }

    .communication-icon {
        height: 35px !important;
        width: 35px !important;
    }

    .communication-icon img {
        width: 35px !important;
        height: 35px !important;
    }

    .portfolio {
        padding: 30px 20px !important;
    }

    .portfolio h3 {
        font-size: 18px !important;
        letter-spacing: 0px !important;
    }

    .portfolio p {
        font-size: 16px !important;
    }

    .portfolio-cards {
        display: grid !important;
    }



    .container {
        padding: 15px !important;
    }

    .cont-section {
        display: grid !important;
        padding: 10px !important;
        margin-left: 10px;
    }

    .card {
        max-width: 100%;
    }

    .content h1 {
        font-size: 1.6rem !important;
        font-weight: 400;
    }

    .content-container {
        margin-top: 15px !important;
    }

    .content p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .services-grid {
        display: block !important;
    }

    .services-section {
        padding: 20px 25px !important;
    }

    .idea-section {
        display: block !important;
        padding: 20px 20px !important;
    }

    .idea-heading {
        font-size: 1.1rem !important;
        font-weight: 400;
    }

    .idea-subtext {
        font-size: 0.90rem !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
    }

    .idea-guarantee {
        font-size: 0.90rem !important;
    }

    .idea-button {
        max-width: 100% !important;
        margin-top: 15px !important;
    }

    .workflow-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        margin: 0px;
    }

    .footer-about img {
        width: 100% !important;
    }

    .footer {
        padding: 40px 20px !important;
    }

    .footer-about img {
        width: 100%;
    }

    .footer-about p {
        font-size: 18px;
    }

    .footer-links {
        display: block;
    }

    .footer-links .link-group {
        margin-bottom: 20px;
    }

    .dropdown-header {
        cursor: pointer;
        margin: 0;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        color: #00ffff;
    }

    .dropdown-content {
        display: none;
        list-style: none;
        padding: 10px 0;
        margin: 0;
    }

    .dropdown-content li {
        margin-bottom: 5px;
    }

    .dropdown-content li a {
        text-decoration: none;
        color: #0a1128;
        font-size: 16px;
    }

    .dropdown-content li a:hover {
        color: #007bff;
    }

    .dropdown-icon {
        font-size: 14px;
        display: inline-block;
        /* margin-left: 10px; */
        transition: transform 0.3s ease;
    }

    .dropdown-header.open .dropdown-icon {
        transform: rotate(180deg) !important;
        transition: transform 0.3s ease;
    }

    .circle-stat {
        width: 120px !important;
        height: 120px !important;
    }

    .about-cont-section h1 {
        font-size: 2.4rem !important;
    }

    .about-container {
        margin-left: 20px !important;
        margin-right: 20px !important;
        margin-top: 70px !important;
    }


    .brand-story {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .brand-story p {
        font-size: 15px !important;
    }

    .service-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    }

    .image-container img {
        max-width: 310px !important;

    }
.image-container{
    display: flex;
    justify-content: center;
}
    .service-card:nth-last-child(2) {
        justify-self: center !important;
        grid-column: auto !important;
    }

    .phone-image {
        max-width: 280px !important;
    }

    .mobile-develop {
        margin-left: 10px !important;
        margin-right: 10px !important;
        padding: 15px !important;
    }

    .services-section1 {
        padding: 10px !important;
        margin-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .services-section1 h1 {
        font-size: 1.7rem !important;
        line-height: 1.3 !important;
    }

    .services-section1 .container {
        padding: 10px !important;
        padding-top: 40px !important;
    }

    .inquiry-btn a {
        padding: 10px 10px !important;
        font-size: 0.85rem !important;
        border-radius: 40px !important;
    }

    .custom-app-development {
        margin-top: 30px;
        padding: 10px !important;
    }

    .custom-app-development1 {
        margin-top: 0px;
        padding: 10px !important;
        padding-top: 70px !important;
        padding-bottom: 20px !important;
    }

    .content h1 {
        font-size: 1.8rem !important;
    }

    .btns.orange {
        margin-bottom: 10px;
    }

    .partner-section {
        padding: 20px !important;
    }

    .texte-head h1 {
        font-size: 1.6rem !important;
    }

    .section-wrapper {
        display: block !important;
        padding: 0px !important;
    }

    .text-cont {
        width: 100% !important;
    }

    .benefits-lists {
        width: 100% !important;
    }


}

@media (min-width: 1500px) {
    .hero h1 {
        font-size: 62px !important;
    }

    .hero .container {
        max-width: 1500px;
    }

    .partner-section {
        margin-left: 60px;
        margin-right: 60px;
    }

    .portfolio-container {
        gap: 50px !important;
    }

    .section {
        padding: 30px !important;
    }

    .modes-of-communication h2 {
        font-size: 40px;
    }

    .map-container {
        max-width: 1350px !important;
        width: 100% !important;
    }

    .portfolio p {
        max-width: 1350px;
    }

    .card {
        max-width: 400px;
    }

    .view-more button {
        padding: 18px 37px;
    }


    .portfolio {
        max-width: 1500px;
        padding: 40px 80px;
    }

    .portfolio h2 {
        margin-left: 25px;
    }

    .portfolio h3 {
        margin-left: 25px;
    }

    .portfolio p {
        margin-left: 25px;
        max-width: 1300px;
    }

    .container {
        max-width: 1400px;
    }


    .content-container {
        max-width: 1390px !important;
    }

    .content {
        max-width: 750px !important;
    }

    .content p {
        font-size: 1.2rem !important;
    }

    .content h1 {
        font-size: 2.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(317px, 1fr)) !important;
    }

    .view-more-btn {
        padding: 12px 25px;
    }

    .navbar .nav-links li {
        margin: 0 20px;
    }

    .brand-story {
        max-width: 1500px !important;
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .brand-story p {
        font-size: 20px !important;
    }

    .services-section1 .container {
        max-width: 1500px !important;
    }


    .footer-links {
        flex: 1 1 53%;
        gap: 100px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .affiliated-services {
        max-width: 1500px !important;
    }

    .erp-container {
        max-width: 1350px !important;
    }

    .design-container {
        justify-content: space-evenly !important;
    }
}

/* about css */

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    min-height: 100%;
    margin-top: 140px;
    padding-bottom: 50px;
    margin-left: 70px;
    margin-right: 70px;
}

.about-cont-section {
    max-width: 50%;
}

.about-cont-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 400;
}

.about-cont-section h1 span {
    color: #ff8625;
    font-weight: 400;
}

.about-cont-section p {
    margin: 20px 0;
    font-size: 1.2rem;
    color: #fff;
}

.about-btn {
    display: inline-block;
    background-color: #ff8625;
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1rem;
    margin-top: 20px;
}

.about-form-section {
    background: white;
    color: black;
    padding: 20px;
    padding-top: 50px;
    margin-bottom: 50px;
    border-radius: 10px;
    width: 40%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.about-form-section input,
.about-form-section textarea,
.about-form-section button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.about-form-section button {
    background-color: #ff8625;
    color: white;
    border: none;
    cursor: pointer;

}

.about-form-section button,
.about-btn:hover {
    background-color: darkorange;
    color: #fff;
}

.about-form-section select {
    padding: 10px;
    margin-right: 5px;
}

.about-form-section .phone-input {
    display: flex;
    gap: 10px;
}



/* affiliate-services */
.affiliated-services {
    max-width: 1400px;
    margin: 40px auto;
    text-align: left;
    margin-left: 50px;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-right: 50px;
    padding: 20px;
}

.affiliated-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.affiliated-services h2 .highlight {
    color: #ff8625;
}

.affiliated-services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #d2d2d2;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.service-card:nth-last-child(2) {
    grid-column: 2 / span 1;
    justify-self: center;
}


/* 
brand-story */
.brand-story {
    max-width: 1200px;
    margin-bottom: 10px;
    padding: 20px;
    background: #fff;
    margin-top: 80px;
    padding-left: 50px;
    padding-right: 50px;
    color: #000;
}

.brand-story h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 400;
}

.brand-story h2 .highlight {
    color: #ff8625;
}

.brand-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #645e7a;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-content img {
    width: 500px;
    height: auto;
    margin-bottom: 20px;

}

.story-content p {
    flex: 1;
    font-size: 17px;
    color: #645e7a;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #d2d2d2;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.service-card:nth-last-child(2) {
    grid-column: 2 / span 1;
    justify-self: center;
}

/* service1 page */
.services-section1 {
    padding: 50px;
    background-color: #f9f9f9;
    color: #333;
    margin-top: 30px;
}

.services-section1 .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.services-section1 h1 {
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 20px;
}

.services-section1 h1 span {
    color: #ff7a00;
    font-weight: bold;
}

.services-section1 p {
    font-size: 1rem;
    line-height: 1.6;
    color: #645e7a;
    margin-bottom: 20px;
}

.services-list1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 5px;
}

.services-list1 ul {
    list-style: none;
    padding: 0;
    margin: 0 15px;
    flex: 1 1 30%;
    min-width: 250px;
}

.services-list1 li {
    font-size: 1rem;
    line-height: 1.7;
    padding: 5px 0;
    position: relative;
}

.services-list1 li::before {
    content: "▶";
    color: #ff7a00;
    font-size: 0.8rem;
    position: absolute;
    left: -20px;
    top: 9px;
    /* transform: translateY(-50%); */
}

.inquiry-btn {
    text-align: center;
}

.inquiry-btn a {
    display: inline-block;
    background-color: #ff8625;
    color: #fff;
    text-decoration: none;
    padding: 10px 35px;
    border-radius: 24px;
    font-size: 1rem;
}

.inquiry-btn a:hover {
    background-color: #e55b00;
}

/* app-development */
.custom-app-development {
    padding: 20px;
    background-image: url(../images/top-section-bg-image.jpg);
}

.custom-app-development1 {
    padding: 20px;
    background-image: url(../images/top-section-bg-image.jpg);
}

.custom-app-development .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.custom-app-development1 .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.custom-app-development .content {
    flex: 1;
    max-width: 50%;
}

.custom-app-development1 .content {
    flex: 1;
    max-width: 50%;
}

.custom-app-development .content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
}

.custom-app-development .content h1 span {
    color: #ff7a00;
    font-weight: bold;
}

.custom-app-development1 .content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 400;
}

.custom-app-development1 .content h1 span {
    color: #ff7a00;
    font-weight: bold;
}

.custom-app-development .content p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 18px;
}


.custom-app-development .content .big {
    margin: 30px 0;
    line-height: 1.3;
    font-size: 20px;
    font-weight: 600;
    color: #2a2443;
}

.custom-app-development .content ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.custom-app-development1 .content p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 18px;
}


.custom-app-development1 .content .big {
    margin: 30px 0;
    line-height: 1.3;
    font-size: 20px;
    font-weight: 600;
    color: #2a2443;
}

.custom-app-development1 .content ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.custom-app-development .content ul li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

.custom-app-development .content ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

.custom-app-development1 .content ul li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

.custom-app-development1 .content ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

.cts-buttons {
    margin-top: 20px;
}

.btns {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-size: 1rem;
    margin-right: 10px;
}

.btns.orange {
    background: #ff7a00;
    color: white;
}

.btns.black {
    background: #000;
    color: white;
}

.image-mobile {
    position: relative;
    flex: 1;
    text-align: center;
}

.service-item1 p {
    font-size: 0.90rem;
    line-height: 1.9;
    color: #645e7a;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 20px;
}

.phone-image {
    max-width: 600px;
    margin: 0 auto;
}

/* wrapper-section */
.section-wrapper {
    display: flex;
    flex-direction: row;
    padding: 20px;
    max-width: 1200px;
    gap: 30px;
}

.mobile-develop {
    padding: 20px;
    margin-left: 70px;
    margin-right: 70px;
    margin-bottom: 30px;
    margin-top: 50px;
    justify-content: center;
    background-color: #ffe9d8;
    border-radius: 10px;
}

.benefits-lists {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.texte-head h1 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.texte-head h1 .highlight {
    color: #f26522;
}

.text-cont p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #565454;
    font-weight: 400;
}

.text-cont {
    width: 50%;
}

.benefits-lists {
    width: 50%;
}

.benefits-lists ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.benefits-lists li {
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.benefits-lists li:before {
    content: "▶";
    color: #f26522;
    font-size: 0.9rem;
    margin-right: 10px;
}

/* portfolio card code */
.portfolio-container {
    display: flex;
    margin-top: 120px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
    gap: 20px;
}

.port-card {
    width: 400px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-align: center;
    padding: 20px;
    border-top: 3px solid #eca52a;
}

.port-card:hover {
    transform: scale(1.05);
}

.portfolio-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.portfolio1 {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skills {
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    /* display: flex; */
    align-items: center;
    gap: 5px;
}

.skil-head {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.skill-item {
    display: inline-block;
    margin: 5px;
}

.skill-item span {
    white-space: nowrap;
    position: relative;
}

.skill-item span:not(:last-child)::after {
    content: "•";
    color: #666;
    font-weight: bold;
    margin-left: 8px;
}

.live-preview {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.live-preview:hover {
    background: #0056b3;
}

/* contact page */

.contact-section {
    padding: 50px 0;
    margin-top: 40px;
}

.map-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.map-container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.map-container .col-6 {
    width: 48%;
    padding: 20px;
}

.contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.contact-form h2 {
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 9px rgba(0, 0, 4, 0.1);
    border-radius: 5px;
}

/* Mobile Input in Single Row */
.mobile-input {
    display: flex;
    gap: 10px;
}

.mobile-input select {
    width: 20%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.mobile-input input {
    width: 78%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: #ff5722;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Company Details */
.company-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.company-details video.contact-icon {
    width: 100%;
    height: 250px;
    margin-bottom: 10px;
}

.company-details p {
    margin: 10px 0;
}

/* Full-Width Map Below Both Columns */
.map-full-width {
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}


/* service-section */
.services-section {
    padding: 20px 80px;
    text-align: center;
    background-color: #fff0e975;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    background-color: #ff8625;
}

.service-item1 {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-icon {
    flex-shrink: 0;
    margin-right: 15px;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-title {
    font-size: 1.0rem;
    color: #333333;
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.service-title1 {
    font-size: 1.0rem;
    color: #645e7a;
    margin: 0;
    font-weight: 600;
    text-align: left;
}

.service-title2 {
    font-size: 1.4rem;
    color: #645e7a;
    margin: 0;
    font-weight: 600;
    text-align: center;
}



.service-item:nth-last-child(2) {
    grid-column: 2 / span 1;
    justify-self: center;
}

.service-item:last-child {
    grid-column: 3 / span 1;
    justify-self: center;
}

/* Blank Space Below the Last Row */
.services-grid::after {
    content: '';
    grid-column: 1 / -1;
    height: 40px;
}

.services-section h2 {
    margin-bottom: 20px;
    text-align: left;
}

/* Erp container */
.erp-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    align-items: flex-start;
    background: #fff;
}

.erp-content {
    flex: 1;
    min-width: 350px;
    margin-right: 20px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.erp-content h1 {
    font-size: 2em;
    color: #1c1c1c;
}

.erp-content span {
    color: #ff8c00;
    font-weight: bold;
}

.erp-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.erp-benefits {
    flex: 1;
    min-width: 350px;
    display: grid;
    gap: 30px;
}

.benefit-box {
    /* background: #f5f5f5; */
    padding: 20px;
    background-color: #3e3a3a;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.benefit-box h3 {
    /* color: #1c1c1c; */
    font-size: 1.3em;
    color: white;
    margin-bottom: 10px;
}

.benefit-box p {
    /* color: #666; */
    font-size: 1em;
    line-height: 1.5;
    color: rgb(205, 199, 199);
}

/* Responsive Design */
@media (max-width: 768px) {
    .erp-container {
        flex-direction: column;
        text-align: center;
    }

    .erp-content {
        position: static;
        /* Mobile view me normal scrolling */
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(206px, 1fr)) !important;
    }
}

/* ui/ux design */
.uiux-services {
    padding: 50px 20px;
    text-align: center;
    background: #fbfbfb;
}

.uiux-services h2 {
    font-size: 28px;
    color: #222;
}

.uiux-services span {
    color: #ff7f00;
    font-weight: bold;
}

/* Services Grid */
.design-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.design-box {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.design-box:hover {
    transform: scale(1.05);
}

.design-box img {
    width: 85px;
    height: auto;
}
