/* ... (previous code) ... */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.location-bar {
    background-color: #333; /* Dark background color */
    color: white;
    padding: 10px;
    text-align: right;
    font-size:1em;
}

.location-content {
    max-width: 1200px; /* Adjust the width as needed */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.location-content i {
    margin-right: 5px;
}

header {
    background-color: hsl(0, 0%, 97%); /* Off-white color for the header */
    color: rgb(249, 50, 50);/* Maroon color for text */
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center items vertically */
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: rgb(249, 50, 50); /* Maroon color for links */
    text-decoration: none; /* Remove text decoration */
}

.slider {
    position: relative;
}

.slider img {
    width: 100%;
    height:100%;
    max-height:100%;
    margin: 0;
   
}

.transition-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Adjust text color as needed */
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7); /* Add a subtle text shadow */
    display: none; /* Initially hide transition text */
}


section {
    padding: 50px;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.item-heading {
    font-size:1.6em;
    color:#f51111;
    font-weight:bold;
    margin-left:10px;
}

h2 {
    color: #f5d3d3;
}


p {
    color: #666;
}

.portfolio-item {
    margin-bottom: 20px;
}

.concept-container {
    background-color: #001f3f; /* Navy color for the main container */
}

.header-text {
    text-align: center;
    padding: 50px 0;
    color: white;
}

.header-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

#about {
    background-color: #bcb9b9;
    padding: 30px 0;
}

#about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-container {
    display: flex;
    justify-content: space-around;
}

.left-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
}

.upper-left {
    margin: 2px 0 20px 20px;
}

.lower-left {
    display: flex;
    justify-content: space-between;
    margin-left:10px;
}

.experience-div,
.quick-support-div {
    flex: 0 0 42%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.experience-div i,
.quick-support-div i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #3498db;
}

.right-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
}

.company-image {
    width: 100%;
    border-radius: 8px;
    align-self: flex-end;
}

.company-image img {
    width: 100%;
    border-radius: 8px;
}

.experience-div h3,
.quick-support-div h3 {
    position: relative;
    display: inline-block;
}

.experience-div h3::before,
.quick-support-div h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease-in-out;
}

.experience-div:hover h3::before,
.quick-support-div:hover h3::before {
    width: 100%;
}






.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns with equal width */
    gap: 40px; /* Adjust the gap between columns */
    margin: 0 30px; /* Add negative margin to counteract default spacing */
}

.service-div {
    box-sizing: border-box;
    height: 250px;
    background: linear-gradient(to bottom, #fe2323, #ffffff);
    /*background-color: #0b2c63; */
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
    margin-bottom: 20px; /* Adjust margin */
}


.service-div:hover {
    background: linear-gradient(to bottom, #ece8e8, #f6f4f4);
    color: #4285f4;
}

.service-div:hover .learn-more {
    color: #84a7e0;
    transform: translateX(-5px); /* Adjust the value as needed */
    transition: transform 0.3s ease; /* Add a smooth transition */
}
.number {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 44px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.135);
}

.divbox{
    color:#4b3333;
}

.service-div:hover .divbox{
    color:#725f5f;
}

.service-div:hover .number {
    
    color: #779edb;
}

h3 {
    margin-top: 20px;
    text-align:center;
}

p {
    margin-top: 20px;
}

.learn-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #84a7e0;
    text-decoration: none;
}

.learn-more:hover { 
    color: rgb(48, 46, 46);
}

.learn-more img {
    width: 15px;
    margin-left: 5px;
}

.fa-solid.fa-ear-listen, 
.fa-solid.fa-laptop-code, 
.fa-solid.fa-magnifying-glass-chart, 
.fa-regular.fa-handshake {
    font-size:34px; 
    color:#777;
    margin-left:10px;
}

.service-div:hover .fa-solid.fa-ear-listen, 
.service-div:hover .fa-solid.fa-laptop-code, 
.service-div:hover .fa-solid.fa-magnifying-glass-chart, 
.service-div:hover .fa-regular.fa-handshake {
    font-size: 38px;
    background-clip: text; /* Apply gradient to text color */
    color: transparent; /* Make text transparent */
    background-image: linear-gradient(45deg, #ee72b6, #62d1d1);
}

.fa-solid.fa-arrow-right-long{
    margin-right:16px;

}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-div {
    background-color: #f0f0f0;
    padding: 20px;
    position: relative;
}

.services-div i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
}

.services-div h3 {
    margin-top: 10px;
    font-size: 18px;
}

.services-div p {
    margin-top: 10px;
    font-size: 14px;
}

#clients {
    background-color: #f4f4f4;
    padding: 50px 0;
}

#clients h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

#clients p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.testimony-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Adjust the number of columns as needed */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimony {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(43, 9, 9, 0.1);
}

.testimony h3 {
    color: #3498db;
}

.testimony p {
    color: #666;
}



form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}
#product-design {
    background-color: #fff;
    padding: 50px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    color: #f51111;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
}

.product-design-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.point {
    flex: 0 0 45%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.point h3 {
    color: #f51111;
    font-size: 20px;
    margin-bottom: 10px;
}

.point p {
    color: #666;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@media only screen and (max-width: 600px) {
    nav ul {
        display: none; /* Hide the navigation links by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff; /* Background color for the mobile navigation */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    nav ul li {
        display: block;
        margin: 10px;
    }
    
    .location-bar {
    
    font-size: .7em;
    text-decoration:none;
}

    header {
        justify-content: space-between;
    }

    .slider,
    section {
        padding: 20px;
    }

    .header-text h2 {
        font-size: 24px;
    }

    .header-text p {
        font-size: 16px;
    }

    .service-container {
        grid-template-columns: repeat(1, 1fr);
        margin: 0;
    }

    .service-div {
        height: auto;
        margin-bottom: 10px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    
    .about-container {
        flex-direction: column; /* Change the flex direction to column for mobile view */
    }

    .upper-left{
        width:100%;
    
        margin:0;
    }
        
        .upper-left p{
    
        padding-right:10px;
        padding-left:20px;
        
    }
    .lower-left {
        display: flex;
        justify-content: space-between;
        margin-left:0;
    }
    .experience-div, 
    .quick-support-div h3 {
        font-size:.9em;
    }
    
    .experience-div,
    .quick-support-div {
        flex: 0 0 42%;
        background-color: #fff;
        padding: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    


    .experience-div,
    .quick-support-div {
    flex: 0 0 42%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


    .experience-div,
    .quick-support-div i {
        text-align: center; /* Center icons and text in mobile view */
    }

    .experience-div h3::before,
    .quick-support-div h3::before {
        width: 100%; /* Ensure the underline spans the full width */
    }
}




/* Tablet Styles */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
    }
}
