
.fs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fs-card-container {
    position: relative;
    overflow: hidden;
}

.fs-card-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.fs-card {
    flex: 0 0 calc(100% - 20px);
    margin: 0 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fs-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fs-card-name {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.fs-card-title {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    max-height: 4.5em;
}

.custom-card-link {
    text-decoration: none;
    color: #ff7300;
    font-weight: bold;
    margin-top: auto;
}

.custom-card-link:hover {
    color: black;
}

.custom-arrow {
    margin-left: 5px;
}

.fs-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: black;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
}

.fs-prev { left: 10px; }
.fs-next { right: 10px; }

.fs-indicator-dots {
    text-align: center;
    margin-top: 20px;
}

.fs-dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.fs-dot.active {
    background-color: #ff7300;
}

/* Media Queries for Responsiveness */
@media screen and (min-width: 768px) {
    .fs-card {
        flex: 0 0 calc(50% - 20px);
        
    }
}

@media screen and (min-width: 1024px) {
    .fs-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media screen and (max-width: 767px) {
    .fs-nav-button {
        font-size: 1.5em;
    }

    .fs-card-image {
        height: 150px;
    }

    .fs-card-name {
        font-size: 1em;
    }

    .fs-card-title {
        font-size: 0.8em;
    }
}



/* Add this to your existing CSS */
.search-results-container {
    display: none;
    position: fixed;
    top: 60px; /* Adjust based on your navbar height */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-results {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.search-results p {
    margin: 10px 0;
    padding: 5px;
    border-bottom: 1px solid #eee;
}

.search-results p:last-child {
    border-bottom: none;
}

.search-results strong {
    background-color: yellow;
    font-weight: bold;
}



body {
    background-image: url('images/3d-background-with-white-cubes.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    padding: 0;



    user-select: none; /* Disables text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE */
    
}

.navbar {
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
}

.navbar.scrolled {
    background-color: white !important;
}

.navbar-nav .nav-link {
    position: relative;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 7px; /* Adds equal space on both left and right */
    font-size: small;
    font-weight:520;
}


.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: transparent;
    visibility: hidden;
    transform: scaleX(0);
    transition: transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    visibility: visible;
    transform: scaleX(1);
    background-color: #ff7300;
}

.navbar .nav-link,
.navbar #searchBtn,
.navbar #menuBtn,
.navbar #searchBtnLg,
.navbar #menuBtnLg {
    color: black !important;
}

.navbar .nav-link:hover,
.navbar #searchBtn:hover,
.navbar #menuBtn:hover,
.navbar #searchBtnLg:hover,
.navbar #menuBtnLg:hover {
    color: #ff7300 !important;
}

.navbar.scrolled .nav-link,
.navbar.scrolled #searchBtn,
.navbar.scrolled #menuBtn,
.navbar.scrolled #searchBtnLg,
.navbar.scrolled #menuBtnLg {
    color: black !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled #searchBtn:hover,
.navbar.scrolled #menuBtn:hover,
.navbar.scrolled #searchBtnLg:hover,
.navbar.scrolled #menuBtnLg:hover {
    color: #ff7300 !important;
}

#searchBtn, #menuBtn, #searchBtnLg, #menuBtnLg {
    border: none;
    background-color: transparent;
}

.search-input-container {
    display: flex;
    align-items: center;
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 40px;
    background-color: transparent;
    margin: 4px;
}

.search input {
    border: none;
    outline: none;
    padding: 10px;
    background: none;
    line-height: 40px;
    font-size: 14px;
    transition: all 0.4s ease;
    width: 0;
    opacity: 0;
}

.search.active {
    background-color: #888;
    border-radius: 20px;
    width: 200px;
}

.search.active input {
    width: 160px;
    opacity: 1;
}

.mobile-search-container {
    display: none;
    padding: 10px;
    background-color: transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-search-container .search {
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 20px;
}

.mobile-search-container .search input {
    width: 100%;
    opacity: 1;
    padding: 0 15px;
}

.search input::placeholder {
    color: black;
    opacity: 0.6;
}

.search input:focus::placeholder {
    color: transparent;
}

.menu-form {
    display: none;
    position: absolute;
    right: 10px;
    top: 60px;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    z-index: 1000;
    font-family: 'Roboto Condensed', sans-serif;
}

.navbar-toggler.custom-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: 'Roboto Condensed', sans-serif;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0;
        margin: 0;
        height: 60px; /* Adjust this value to match your navbar height */
    }

    .navbar .container-fluid {
        padding: 0;
        margin: 0;
        width: 100%;
        position: static;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-65%);
        margin: 0;
        padding: 0;
        z-index: 1031; /* Ensure logo is above other elements */
        top: 5px; /* Adjust this value to vertically position the logo */
    }

    .navbar-brand img {
        max-width: 150px;
        height: auto;
        display: block;
    }

    .navbar-toggler {
        margin: 0;
        padding: 10px 15px;
        z-index: 1030;
    }

    .d-flex.align-items-center {
        margin: 0;
        padding: 10px 15px;
        z-index: 1030;
    }

    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 2%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        z-index: 1029;
    }

    .navbar-nav {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .mobile-search-container {
        margin: 0;
        padding: 10px 15px;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .search-input-container {
        margin-top: 10px;
    }

    .mobile-search-container.active {
        display: block;
    }

    .search-input-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 10px 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .search {
        width: 100%;
        margin: 0;
    }

    .search.active {
        width: 100%;
    }
}
#coun {
    font-size: 3rem;
    color: #ff7300;
    text-align: center;
}
#project-btn {
    background-color: #ff7300;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 5%;
    font-family: 'Roboto Condensed', sans-serif;
    transform: translateY(100px);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
}

#call-btn {
    background-color: #ff7300;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 5%;
    margin-left: 5%;
    border-radius: 50px;
    transform: translateY(100px);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
}

#con {
    background-color: transparent;
    color: #ff7300;
    margin-bottom: 5%;
    font-weight: bolder;
    font-size: 1.3rem;
    font-family: 'Roboto Condensed', sans-serif;
    transform: translateY(100px);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
}

#project-btn:hover,
#call-btn:hover {
    color: black;
}

.container {
    width: 80%;
    margin: auto;
}

.mb-5 {
    margin-bottom: 5rem;
}

.col-lg-2, .col-md-4, .col-sm-6 {
    text-align: center;
    margin-bottom: 30px; /* Add margin bottom for spacing between columns */
    margin-top:8%;
    margin-left: 3%;
}

.timer {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    animation: count-up 2s ease-out forwards; /* Animation for counting up */
    opacity: 0; /* Initially hide the timer */
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start from a slightly lower position */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Move to original position */
    }
}

.icon {
    font-size: 3rem;
    color: #ff7300;
}

p {
    margin: 10px 0; /* Adjust paragraph margin */
    font-family: 'Roboto Condensed', sans-serif;
}
h5{
    font-family: 'Roboto Condensed', sans-serif;
}
/* Margin from top for the counters section */
#counters-section {
    margin-top: 50px;
}

h4{
    font-family: 'Roboto Condensed', sans-serif;
}
h2{
    font-family: 'Roboto Condensed', sans-serif;
}
h3{
    font-family: 'Roboto Condensed', sans-serif;
}
h1{
    font-family: 'Roboto Condensed', sans-serif;
}
#logo {
    padding-left: 30%;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 45%;
    left: 0;
    width: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
}

.carousel-caption p {
    color:white;
    font-size: 1.25rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.content-section {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    font-family: 'Roboto Condensed', sans-serif;
}

.content-section.content-transition {
    opacity: 1;
    transform: translateY(0);
}

.content-section.content-transition #project-btn,
.content-section.content-transition #call-btn,
.content-section.content-transition #con {
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .carousel-item img {
        height: 400px;
    }

    .carousel-caption h5 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .content-section {
        padding: 20px;
    }

    #coun {
        font-size: 2.5rem;
    }

    .counter {
        font-size: 2rem;
    }
}
#contactbtn{
    background-color: #ff7300;
    font-family: 'Roboto Condensed', sans-serif;
}
.carousel-item {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping to a new line */
    font-family: 'Roboto Condensed', sans-serif;
}

.carousel-item .col-md-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px; /* Add padding to manage spacing */
    flex: 0 0 30%; /* Reduce width to 30% */
    max-width: 30%; /* Ensure it doesn't exceed 30% */
}

@media (max-width: 992px) {
    .carousel-item .col-md-4 {
        flex: 0 0 45%; /* Adjust for medium screens */
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .carousel-item .col-md-4 {
        flex: 0 0 90%; /* Adjust for small screens */
        max-width: 90%;
    }
}

.carousel-control-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

.carousel-control-wrapper.prev {
    left: 0;
}

.carousel-control-wrapper.next {
    right: 0;
}

.carousel-control-wrapper:hover,
.carousel-control-wrapper:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 100%;
    height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}



/* Optional: Animate background gradient */
@keyframes slideBackground {
    0% {
        background-position: right; /* Start from right */
    }
    100% {
        background-position: left; /* End at left */
    }
}
@media only screen and (max-width: 767px) {
    .about-area .thumb {
        margin-bottom: 30px;
    }
}
.about-area .thumb {
    position: relative;
}
/* Common Styling */
#head {
    font-weight: bold;
    text-transform: uppercase;
    color:#ff7300;
}

.line {
    border: 0;
    height: 2px;
    background:#ff7300;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 250px;
}

#indus {
    margin-left: auto;
    margin-right: auto;
    transition: transform 1.3s ease, box-shadow 1.3s ease;
    color: white;
    font-style: normal;
    font-weight: bold;
    display: inline;
    text-align: center;
}

#white{
    color:white;
    font-weight: bold;
}

#indus:hover {
    color:#333;
    transform: translateY(-10px) scale(1.05);
}

.icon, .text {
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles for larger screens - unchanged */
@media (min-width: 577px) {
    .row {
        display: flex;
        justify-content: center;
    }

    .col-sm-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Styles specifically for phone view */
@media (max-width: 576px) {
    .container {
        padding: 0;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0;
    }

    .col-sm-2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }

    .row.mt-4 {
        margin-top: 0 !important;
    }

    #indus.icon {
        font-size: 1.5rem;
    }

    #indus.text {
        font-size: 0.9rem;
    }

    /* Force two columns layout for phone view */
    .row > .col-sm-2:nth-child(2n+1) {
        clear: left;
    }

    /* Remove margin between rows */
    .row + .row {
        margin-top: 0;
    }
}

/* Responsive font sizes */
@media (max-width: 576px) {
    #head, #headto {
        font-size: 1.2rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #head, #headto {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    #head, #headto {
        font-size: 2rem;
    }
}
.text-content {
    padding: 15px;
    margin: 10px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.greet {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-family: 'Roboto Condensed', sans-serif;
}

.greet:hover {
    color: black;
}

#sign {
    height: 50%;
    width: 70%;
}

img {
    max-width: 100%;
    height: auto;
}

.custom-img {
    max-height: 75%;
    border: 8px solid white;
    border-radius: 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 8%;
}

@media (max-width: 768px) {
    .text-content {
        text-align: left; /* Changed from center to left for better alignment on phones */
    }

    .row.mt-5.pt-5 {
        flex-direction: column;
        min-height: auto;
    }

    .col-md-6 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .custom-img {
        height: auto;
        max-height: 50vh; /* Reduced max-height for better landscape view on phones */
        width: 100%; /* Ensure the image takes full width */
        object-fit: cover; /* This will maintain aspect ratio while fitting the container */
        margin-left: 0; /* Remove left margin on phones */
    }

    #sign {
        height: auto; /* Changed from fixed height to auto */
        width: 50%; /* Reduced width for better fit on phones */
        max-width: 130px; /* Set a max-width to prevent it from becoming too large */
    }

    .row.mt-4.align-items-center {
        text-align: center; /* Center align the signature and name on phones */
    }

    .col-md-5, .col-md-7 {
        flex: 0 0 100%; /* Make these columns full width on phones */
        max-width: 100%;
        text-align: center;
    }
}

.img-container {
    width: 100%;
    height: 80px; /* Adjust this value as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
}
.brand-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures image aspect ratio is maintained */
    transition: transform 0.6s;
    display: block;
}
.brand-img:hover {
    transform: scale(1.2);
}
.mb-3 {
    background: transparent;
}
@media (max-width: 768px) {
    .img-container {
        height: 50px; /* Adjust this value as needed for smaller screens */
    }
}
.col-2 {
    padding: 0;
    margin: 0;
}

.card2 {
    background-color: white;
    color: black;
    height: 100%;
    border: none;
    border-radius: 15px !important;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto Condensed', sans-serif;
}

.card-img-top {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    object-fit: cover;
}
.card-title,
.card-text {
    color: black;
    font-family: 'Roboto Condensed', sans-serif;
}

.card-body {
    background-color: white;
}

.card2:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: scale(1.05); /* Optional: Add a hover effect */
}

.custom-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer * {
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section {
    flex: 1;
    margin-bottom: 30px;
    min-width: 200px;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section.custom-about {
    flex: 2;
    min-width: 200px;
    background-color: #333;
    border: 1px solid white;
    margin-left: 30px;
    margin-right: 180px;
    padding: 20px 60px 20px 40px;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer .custom-logo {
    max-width: 200px;
    margin-bottom: 20px;
    margin-left: 0 !important;
    padding-left: 0 !important;
    height: auto;
    box-sizing: border-box;
}

#socialIcons{
    align-items: center;
    padding-left: 30px;
}

.custom-footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 0 10px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #ffffff;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section ul li {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-section ul li a:hover {
    color: #ffffff;
}

.custom-footer-section.custom-contact ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.custom-footer .custom-icon {
    padding-top: 3px;
    margin-right: 10px;
    font-size: 18px;
    color: #ff7300;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.custom-footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}

.custom-footer-bottom p {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.custom-footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.custom-footer-bottom-links a:hover {
    color: #ffffff;
}

/* New styles for social icons */
.custom-social-icons {
    margin-top: 20px;
}

.custom-social-icon {
    display: inline-block;
    margin-right: 10px;
    color: #cccccc;
    font-size: 18px;
    transition: color 0.3s ease;
}

.custom-social-icon:hover {
    color: #ff7300;
}

@media (max-width: 768px) {
    .custom-footer-content {
        flex-direction: column;
    }

    .custom-footer-section {
        margin-bottom: 30px;
        width: 100%;
    }

    .custom-footer-section.custom-about {
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
        font-family: 'Roboto Condensed', sans-serif;
    }

    .custom-footer-section.custom-contact ul li {
        align-items: flex-start;
    }

    .custom-footer .custom-icon {
        margin-top: 3px;
    }

    .custom-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .custom-footer-bottom-links {
        margin-top: 10px;
    }

    .custom-footer-bottom-links a {
        margin: 5px 10px;
        display: inline-block;
    }
}






.text{
    font-family: 'Roboto Condensed', sans-serif;
}
.card-text,.card-title{
    font-family: 'Roboto Condensed', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.service-logo img {
    width: 50px;  /* Set the width to 50px */
    height: 50px; /* Set the height to 50px */
    object-fit: contain; /* Make sure the image scales to fit within the box */
    margin-bottom: 15px; /* Add spacing below the image */
    display: block; /* Ensure the image is treated as a block-level element */
    margin-left: auto;  /* Center the image horizontally */
    margin-right: auto; /* Center the image horizontally */
}
@media (max-width:700px) {

}


/*latest news backend part */
/*<div class="container mt-4">
        <div class="row justify-content-center">
            <?php
            // Example array of project data
            $projects = [
                [
                    'image' => 'path/to/image1.png',
                    'title' => 'Project Title 1',
                    'description' => 'Project description goes here. This is a brief description of what the project is about.'
                ],
                [
                    'image' => 'path/to/image2.png',
                    'title' => 'Project Title 2',
                    'description' => 'Project description goes here. This is a brief description of what the project is about.'
                ],
                [
                    'image' => 'path/to/image3.png',
                    'title' => 'Project Title 3',
                    'description' => 'Project description goes here. This is a brief description of what the project is about.'
                ],
            ];
    
            // Loop through the projects array and generate the HTML for each project
            foreach ($projects as $project) {
                echo '
                <div class="col-md-4 mb-4">
                    <div class="card shadow-sm">
                        <img src="' . $project['image'] . '" class="card-img-top" style="height: 140px;" alt="' . $project['title'] . '">
                        <div class="card-body">
                            <h5 class="card-title" style="color:black;">' . $project['title'] . '</h5>
                            <p class="card-text" style="color:black;">' . $project['description'] . '</p>
                        </div>
                    </div>
                </div>';
            }
            ?>
        </div>
    </div>*/