:root {
    --primary-color: #009ee2;
    --secondary-color: #002c6c;
    --accent-color: #ff7f00;
}

/* .section-padding{
    padding: 50px 0;
} */

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.navbar-brand .logo {
    width: 100px;
    height: 65px;
    object-fit: contain;
    background-size: contain;
    background-position: center;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* .hero-section {
    background: linear-gradient(rgba(0, 44, 108, 0.8), rgba(0, 44, 108, 0.8)), url('/api/placeholder/1920/650') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
} */

/* banner section start */

.banner {
    background-image: url('../images/imgs/home.jpg'); /* Replace with the actual image URL */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height */
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Overlay color */
}
.wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}
.banner-text{
    position: relative;
    z-index: 1; /* Ensure text is above the overlay */  
}
.btn.btn-custom.btn-lg{
    position: relative;
    z-index: 1; /* Ensure text is above the overlay */  
}
.btn-custom {
    background-color: #007bff; /* Button color */
    color: white;
}

.btn-custom:hover {
    background-color: #0056b3 !important; /* Darker shade on hover */
    color: white;
}

/* banner section end */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 4.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.email-btn{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #0084be;
    border-color: #0084be;
}

.btn-outline-light {
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    margin-left: 15px;
}

.section-title {
    text-align: left;
    margin-bottom: 50px;
    color: #333;
    font-size: 2em;
}

.custom-link{
    text-decoration: underline;
    list-style-type: none;
    color: #333;

}

/* About section on landing page */

.section-title {
    font-size: 2rem; /* Font size for the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

.section-para {
    font-size: 1rem; /* Font size for the paragraph */
    color: #6c757d; /* Gray color for text */
    line-height: 1.5; /* Line height for readability */
}

.btn-primary {
    background-color: #007bff; /* Bootstrap primary color */
    border-color: #007bff; /* Bootstrap border color */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
    border-color: #0056b3; /* Darker border on hover */
}

.img-fluid {
    /* width: 100%; */ 
    /* height: 100%; */
    max-height: 500px;
    border-radius: 1.5rem !important;
    object-fit: contain;
}

/* protfolio section */
.portfolio-item {
    text-align: left;
    margin: 20px;
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    width: 100%;
}
/* .portfolio-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} */
.portfolio-image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    max-height: 150px;
}

.portfolio-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}
.read-more {
    color: #000;
    text-decoration: underline;
}

.read-more-goal {
    color: #000;
    text-decoration: none !important;
    list-style-type: none;
}


.read-more:hover {
    color: #333;
}


/* Our service section on landing page */

 .services-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.image-container {
    width: 100%; /* Adjust width as needed */
    margin-right: 20px; /* Spacing between images */
}

.image-container img {
    width: 100%;
    border-radius: 8px; /* Rounded corners */
}

.services-text {
    max-width: 55%; /* Adjust width as needed */
} 

.services-text h2 {
    font-size: 32px;
    margin: 10px 0;
}

p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 15px;
    background-color: #4A90E2; /* Button color */
    color: white;
    text-decoration: none;
    border-radius: 31px; /* Rounded corners */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5B9BD5; /* Hover color */
}

.custom-img {
    max-width: 300px;
    /* max-height: 300px; */
    width: 100%;
    height: auto;
}

.image-container {
    flex: 1; /* Allow the images to take equal space */
    display: flex; /* Make the image container flexible */
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    max-width: 400px;
}

.box-order-1{
    width: 100%;
    max-width: fit-content;
}

.box-order-2{
    width: 100%;
    max-width: 100%;
    flex: 1;
}
/* .feature-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 10px;
    height: 100%;
}

.feature-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
} */

.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.testimonial-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.client-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info {
    margin-left: 15px;
}

.contact-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.left-section-class{
    /* width: 100%; */
    /* height: 100%; */
    /* max-height: 400px; */
    /* border-radius: 1.5rem !important; */
    /* object-fit: contain; */
    border-radius: 100% !important;
}

.slick-track {
    display: flex;
    gap: 50px;
}

footer {
    background-color: #002152;
    color: white;
    padding: 50px 0 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.solutions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.solution-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
}

.stats-section {
    padding: 80px 0;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.innovation-section {
    padding: 80px 0;
}

.innovation-img {
    border-radius: 10px;
    overflow: hidden;
}

.client-info h5{
    font-size: 9px;
}

.client-info p{
    font-size: 8px;
}

/* .portfolio-item-goal {
    background-color: #fff;
    transition: box-shadow 0.3s ease-in-out;
  } */

  /* .portfolio-item-goal:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  } */

  .portfolio-title {
    font-size: 1.1rem;
  }

  .collapse-content {
    font-size: 0.9rem;
  }

  .read-more-goal {
    cursor: pointer;
  }

  .goal-portfolio-image {
    width: 100%;
    height: auto;
    border-radius: 21px;
    /* max-height: 150px; */
}

.innvo-portfolio-image{
    width: 100%;
    height: auto;
    border-radius: 21px;
    /* max-height: 150px; */
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 20px; /* Space below the image */
    }

    .services-text {
        max-width: 100%;
    }

    .custom-img {
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
    }
}
@media only screen and (max-width: 992px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 20px; /* Space below the image */
    }

    .services-text {
        max-width: 100%;
    }

    .custom-img {
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
    }
}


@media only screen and (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 20px; /* Space below the image */
    }

    .services-text {
        max-width: 100%;
    }

    .custom-img {
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
    }
    .box-order-1{
        width: 100%;
        max-width: fit-content;
    }
    .box-order-2{
        width: 100%;
        max-width: 100%;
        flex: 1;
    }
    .portfolio-item {
        width: 100%;
        margin: 10px 0; /* Adjust margin for smaller screens */
    }
    /* .portfolio-image {
        height: 200px; /* Adjust height for smaller screens 
    } */
    .portfolio-title {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
    .testimonial-card {
        padding: 20px; /* Adjust padding for smaller screens */
    }
    .testimonial-card p {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
    .testimonial-card h5 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
    .testimonial-card h6 {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%; /* Full width for smaller screens */
    }
    .contact-info {
        text-align: center; /* Center align for smaller screens */
    }
    .contact-info i {
        margin: 0; /* Remove margin for smaller screens */
    }
    .contact-info p {
        margin: 10px 0; /* Adjust margin for smaller screens */
    }
    .footer-links {
        text-align: center; /* Center align for smaller screens */
    }
    .footer-links li {
        display: inline-block; /* Inline for smaller screens */
        margin: 0 10px; /* Adjust margin for smaller screens */
    }
    .social-icons {
        text-align: center; /* Center align for smaller screens */
    }
    .social-icons a {
        margin: 0 10px; /* Adjust margin for smaller screens */
    }
    .solutions-section {
        padding: 50px 0; /* Adjust padding for smaller screens */
    }

    .solution-card {
        margin-bottom: 20px; /* Adjust margin for smaller screens */
    }
    .solution-img {
        height: 200px; /* Adjust height for smaller screens */
    }
    .solution-overlay {
        padding: 10px; /* Adjust padding for smaller screens */
    }
    .stats-section {
        padding: 50px 0; /* Adjust padding for smaller screens */
    }
    .stat-number {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }
    .stat-title {
        font-size: 1.2rem; /* Adjust font size for smaller screens */
    }
    .innovation-section {
        padding: 50px 0; /* Adjust padding for smaller screens */
    }
    .innovation-img {
        height: 200px; /* Adjust height for smaller screens */
    }
    .innovation-img img {
        width: 100%; /* Full width for smaller screens */
        height: auto; /* Maintain aspect ratio */
    }
    .innovation-img h2 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
    .innovation-img p {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
    .innovation-img a {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
    }
    .innovation-img a:hover {
        text-decoration: underline; /* Underline on hover for smaller screens */
    }
    .innovation-img a:focus {
        outline: none; /* Remove outline on focus for smaller screens */
    }
    .innovation-img a:active {
        outline: none; /* Remove outline on active for smaller screens */
    }
    .innovation-img a:visited {
        color: #007bff; /* Change color for visited links for smaller screens */
    }
    .innovation-img a:visited:hover {
        text-decoration: underline; /* Underline on hover for visited links for smaller screens */
    }
    .section-padding{
        padding: 0px 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-reverse-section{
        flex-direction: column-reverse;
    }
    .footer-links{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        align-items: baseline;
        gap: 10px;
        
    }
    .social-icons {
        display: flex;
        justify-content: flex-start;
        align-items: baseline;
    }
    
}

@media only screen and (max-width:476px){
    .banner-text{
        font-size: 1.5rem;
    }
}
