/* General Styles */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
     padding-top: 80px; 
     scroll-behavior: smooth; 
    scroll-padding-top: 80px; /* Adjust this to your header height */
}
.jconfirm-box-container{
    width: 537px;
    margin: 0 auto;
}
.container {
    width: 90%;
/*    max-width: 1371px;*/
max-width: 1669px;
    margin: auto;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
    padding:  15px 0;
     /*transition: all 0.3s ease;*/
}
.scrolled {
            padding: 10px; 
            background: #2E7D32; /* Darker color */
        }
/*header {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}*/

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo img {
    height: 73px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #666;
/*    font-weight: 600;*/
    padding: 10px 15px; /* Add padding for better spacing */
    position: relative;
}

/* Active link styling */
nav ul li a.active {
    color: royalblue;
}

nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 25px; /* Creates gap on both sides */
    right: 25px;
    bottom: -5px; /* Adjust spacing from text */
    height: 3px;
    background-color: royalblue;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;

}

/* Hamburger Menu */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    display: none; /* Hidden by default */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }
    .logo img {
    height: 62px;
}


    nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul {
        flex-direction: column;
        padding: 10px;
    }

    nav ul li {
        padding: 10px 0;
    }

    nav.show {
        display: block;
    }
}

/*end of header*/
/* Hero Section */
.hero {
    background-color: white !important;
/*    padding-top: 132px;*/
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    
}


.hero-text {
    width: 50%;
    text-align: left; /* Ensure content aligns left */
}

.hero-text h2 {
    font-size: 36px;
    color: #333;
    text-align: left;
    margin-bottom: 11px;

}

.hero-text p {
    color: #666;
    margin: 10px 0;
    margin-bottom: 24px;

}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: royalblue;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid royalblue;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: royalblue;
    color: white;
}

/* Hero Image */
.hero-image {
    width: 50%;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 681px;
}
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px; /* Add padding around the hero section */
    }

    .hero .container {
        flex-direction: column; /* Stack items on small screens */
        text-align: center;
    }
    .hero-text h2{
        font-size: 30px;
    }

    .hero-text,
    .hero-image {
        width: 100%; /* Make them full width */
    }

    .hero-image img {
        max-width: 100% !important; /* Prevent the image from being too big */
    }
}


/* Logo Row */
.logo-row {
    padding: 30px 0;
    background: #fff;
}



.swiper {
    width: 100%; /* Ensure Swiper fits inside the container */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 80px; /* Set a fixed width */
    height: 80px; /* Set a fixed height */
    object-fit: contain; /* Ensures the image scales properly */
    transition: transform 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.1);
}





/* end of Hero Section */


/* Sections */
section {
    padding: 48px 0;
}

/*h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}*/

/* About us */
.about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.line-con{
    display: flex;
    justify-content: flex-start;
}
/* Styled Heading with Line */
.about h2 {
   
    color: royalblue;
    font-size: 32px;
    font-weight: bold;
}

.about .line {
    width: 4px; /* Make it thin for a vertical line */
    height: 45px; /* Adjust the height of the vertical line */
    background-color: royalblue;
    display: inline-block;
    margin-right: 10px; /* Space between the line and text */
}

/* Flexbox Layout */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.text-content {
    width: 50%;
    text-align: left;
}

.text-content p {
    color: #666;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: royalblue;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid royalblue;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px; /* Space before stats */
}

/* Stats Styling (Only Numbers Below Text) */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 18px;
    font-weight: bold;
    color: royalblue;
    margin-top: 10px;
}

.stats div {
    text-align: left;
}

.stats strong {
    display: block;
    font-size: 28px;
}

/* Image Section */
.image-content {
    width: 45%;
    text-align: center;
}

.image-content img {
    width: 100%;
    max-width: 500px;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content, .image-content {
        width: 100%;
    }

    .image-content {
        text-align: center;
        margin-top: 20px;
    }

    .stats {
        justify-content: flex-start;
        text-align: center;
    }
}

/* end of about us */

/* General Styling */
/* General Styling */
.services {
    padding: 60px 0;
}

#what-we-do .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align to top for better spacing */
    width: 90%;
    max-width: 1630px;
    margin: auto;
    flex-wrap: wrap; /* Allow wrapping for small screens */
}

/* Left Side: Text Content */
.content {
    width: 24%; /* Increased for better spacing */
    min-width: 300px; /* Avoid shrinking too much */
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: royalblue;
}

.section-header .line {
    width: 4px;
    height: 40px;
    background-color: royalblue;
    margin-right: 10px;
}

h2 {
    color: royalblue;
    font-size: 28px;
    margin-bottom: 10px;
}

.description {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.no-btn {
    color: royalblue;
    text-decoration: none;
    font-weight: bold;
}

/* Right Side: Slider Wrapper */
.slider-wrapper {
    width: 76%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Hide overflow to contain items */
}

/* Service Slider */
.service-slider {
    display: flex;
    gap: 20px; /* Space between service items */
    scroll-behavior: smooth; /* Smooth scrolling */
    overflow: hidden; /* Hide scrollbar */
}

/* Service Item Box */
.service-item {
    position: relative; /* Ensure button positions correctly */
    width: 225px; /* Ensure one item fits the view */
    padding: 30px 19px;
    height: 320px; /* Consistent height */
    color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    white-space: normal; /* Allow wrapping */
    word-wrap: break-word; /* Break long words */
}

/* Background Colors */
/*.service-item:nth-child(1) { background: #8e2ac1e0; --arrow-color: #8e2ac1e0; } 
.service-item:nth-child(2) { background: #6dd339d6; --arrow-color: #6dd339d6; } 
.service-item:nth-child(3) { background: #f70068e8; --arrow-color: #f70068e8; }
.service-item:nth-child(4) { background: #f2986b; --arrow-color: #f2986b; }*/

/* Icons and Content */
.service-item i {
    font-size: 29px;
    color: #fff;
    margin-bottom: 10px;
}
/* Apply the background color to the arrow */
.service-item .fa-arrow-right {
/*    color: var(--arrow-color); Inherit color from parent */
    font-size: 16px;
/*    -webkit-text-stroke: 1px var(--arrow-color); /* Adds thickness */
    margin-top: 10px;
}

.service-item h3 {
    font-size: 17px; /* Larger for easier readability */
    margin-bottom: 10px;
    color: #fff;
}

.service-item p {
    font-size: 14px; /* Adjusted for better mobile reading */
    margin-top: 10px;
}

/* Below Button (Arrow Button) */
.below-btn {
    position: absolute;
    bottom: 12px; /* Space from the bottom */
    right: 19px; /* Align to the right */
    background: white;
    color: black;
    width: 36px; /* Larger for easier touch */
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Next Button (Slider Control) */
.next-btn {
    background: none;
    color: royalblue;
    font-size: 42px; /* Larger for better navigation */
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 15px 10px;
    margin-left: 19px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    #what-we-do .container {
        flex-direction: column;
        text-align: center;
        align-items: center; /* Center everything on smaller screens */
    }

    .content {
        text-align:left;
        width: 100%; /* Full width for better alignment */
        margin-bottom: 40px; /* Space below the content */
    }

/*    .slider-wrapper {
        width: 100%;
        overflow-x: auto; 
    }

    .service-slider {
        display: flex;
        gap: 15px; 
    }
*/


}
@media screen and (max-width: 1024px) {
    .service-item {
        min-width: 47%; 
        width: 47%; /* Take up the full width */
         height: 250px; /* Adapt height to content */
    }

}
/* Smaller Devices (Mobile Portrait) */
@media screen and (max-width: 768px) {
    .service-item {
        min-width: 100%; 
        width: 100%; /* Take up the full width */
          height: 320px; /* Adapt height to content */
    }

    .below-btn {
        width: 32px; /* Smaller button */
        height: 32px;
    }
   
    
}
@media screen and (max-width: 375px) {
     .next-btn {
       
        position: absolute;
        right: 10px;
        bottom: 20px; 
         font-size: 36px;
    }
}



/*Technology */
.technology {
    text-align: center; /* Centers all content inside */
}

.technology .line {
    width: 50px;
    height: 4px;
    background-color: royalblue;
    margin: 10px auto; /* Centers the line */
}

.technology h2 {
    font-size: 28px;
    color: royalblue;
    margin: 10px 0;
    text-align:center;
}

.technology p {
    font-size: 13px;
    color: #333;
    max-width: 800px;
    margin: 0 auto; /* Centers paragraph */
}

.technology table {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    border-collapse: collapse; /* Ensures no double borders */
    
}

.technology table td, 
.technology table th {
    padding: 13px;
    vertical-align: middle;
    border: 1px solid #ddd; /* Cell Borders */
}

.technology table td:first-child {
    font-weight: bold;
    color: #666;
    width: 200px;
}

/* Ensure images stay aligned */
.technology table td img {
    max-width: 80px;
    height: auto;
    margin-right: 10px;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .technology table {
        align-self: center;
        text-align: center;
    }

    .technology table td {
        display: block;
        text-align: center;
        border: none;
    }

    .technology table td img {
        display: inline-block;
    }
}


/*End of technology*/
/*Technology */

/*how we do */
.how-we-do {
    text-align: center;
    padding: 50px 20px;
}

.how-we-do .line {
    width: 50px;
    height: 4px;
    background-color: royalblue;
    margin: 10px auto;
}

.how-we-do h2 {
    font-size: 28px;
    color: royalblue;
    margin: 10px 0;
    text-align:center;
}
.step p{
    text-align:left !important;
    
}

.how-we-do p {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
     text-align:center;
    
}

/* Process Steps */
.process {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
        border: 1px solid #ddd;
    transition: background 0.3s ease-in-out;
}

/* Step Number */
.step-number {
    font-size: 45px;
    font-weight: bold;
    color: #cdd0db;

   top: 8px;
    
}

/* Hover Effect */
.step:hover {
    background: #fff44f; /* Lemon Yellow */
}

/* Responsive - Mobile View */
@media (max-width: 768px) {
    .process {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 400px;
    }
}
/* our tools*/
.our-tools {
    text-align: center;
    padding: 50px 20px;
}

.our-tools .line {
    width: 50px;
    height: 4px;
    background-color: royalblue;
    margin: 10px auto;
}

.our-tools h2 {
    font-size: 28px;
    color: royalblue;
    margin: 10px 0;
    text-align:center;
}

.our-tools p {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Tools Row */
.tools-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #f5f5f5; /* Ash Background */
    padding: 30px 20px;
    border-radius: 10px;
     align-items: center;
    gap: 81px;
}

/* Tool Box */
.tool {
    text-align: center;
    transition: color 0.3s ease-in-out;
}

/* Icon Styling */
.tool i {
    font-size: 26px;
    color: #333;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

/* Tool Name */
.tool p {
    font-size: 14px;
/*    font-weight: bold;*/
    position: relative;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.tool:hover i,
.tool:hover p {
    color: royalblue;
}

/* Half Underline */
.tool p::after {
    content: "";
    width: 50%;
    height: 3px;
    background-color: royalblue;
    position: absolute;
    bottom: -5px;
    left: 25%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tool:hover p::after {
    opacity: 1;
}

/* Responsive - Mobile View */
@media (max-width: 768px) {
    .tools-row {
        flex-direction: column;
        align-items: center;
    }
}
/*domain*/
.domain {
    padding: 50px 20px;
}

.domain .container {
    display: flex;
    align-items: center;
/*    justify-content: space-between;*/
    gap: 20px;
    flex-wrap: wrap;
}

/* Image Styling */
.domain img {
    max-width: 24%;
    height: auto;
    border-radius: 10px;
}

/* Content Box */
.domain-content {
    max-width: 74%;
}

/* Heading Styling */
.domain-content h2 {
    font-size: 28px;
    color: royalblue;
    margin-bottom: 15px;
}

/* Bullet List Styling */
.domain-content ul {
    list-style: none;
    padding: 0;
}

.domain-content ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

/* Tick Icon */
.domain-content ul li i {
    color: royalblue;
    font-size: 20px;
    margin-right: 10px;
    margin-top:7px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: left;
    }

    .domain img {
        max-width: 100%;
    }

    .domain-content {
        max-width: 100%;
    }

    .domain-content ul li {
        justify-content: center;
        text-align:left;
    }
}
/* industries */
.industries {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

/* Center Line */
.industries .line {
    width: 50px;
    height: 4px;
    background-color: royalblue;
    margin: 0 auto 15px;
}

/* Heading */
.industries h2 {
    font-size: 28px;
    color: royalblue;
    margin-bottom: 10px;
    text-align:center;
}


/* Paragraph */
.industries p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
     text-align:center;
}

/* Industry Grid */
.industry-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 21px;
    justify-content: center;
    margin-top: 20px;
}

/* Industry Card */
.industry-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: left;
}

/* Icon */
.industry-item i {
    font-size: 40px;
    color: royalblue;
    margin-bottom: 10px;
}

/* Industry Name */
.industry-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

/* Description */
.industry-item p {
    font-size: 14px;
    color: #666;
    text-align:left !important;
}

/* Hover Effect */
.industry-item:hover {
    background: royalblue;
    color: white;
}

.industry-item:hover i,
.industry-item:hover h3,
.industry-item:hover p {
    color: white;
}


/* Responsive */
@media (max-width: 768px) {
    .industry-list {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .industry-item {
        padding: 15px;
    }

    .industry-item i {
        font-size: 30px;
    }

    .industry-item h3 {
        font-size: 18px;
    }

    .industry-item p {
        font-size: 13px;
    }
}
/*our usps*//* USP Section */
.our-usp {
    background-color: #79f1f1;
    padding: 50px 20px;
}

/* Centered Line */
.our-usp .line {
    width: 50px;
    height: 4px;
    background-color: white;
    margin: 0 auto 15px;
}

/* Heading */
.our-usp h2 {
    text-align: center;
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

/* Description */
.our-usp p {
    text-align: center;
    font-size: 16px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 30px;
}
.our-usp .usp-list p {
    text-align: left;
}
/* USP Cards with Up-Down Effect */
.usp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual USP Card */
.usp-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: left;
    flex: 1 1 calc(20% - 20px); /* Ensures equal width */
    min-width: 220px;
    max-width: 300px;
    min-height: 180px; /* Prevents height inconsistencies */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Staggered Up-Down Effect */
.usp-item:nth-child(odd) {
    transform: translateY(-15px); /* Move odd cards up */
}

.usp-item:nth-child(even) {
    transform: translateY(15px); /* Move even cards down */
}

/* Icon */
.usp-item i {
    font-size: 40px;
    color: #00eded;
    margin-bottom: 10px;
}

/* USP Title */
.usp-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

/* USP Description */
.usp-item p {
    font-size: 14px;
    color: #a59696;
}

/* Hover Effect */
.usp-item:hover {
    background:#79f1d8;
    /*background: #d8e9e9;*/
    color: white;
}
.usp-item:hover i,
.usp-item:hover h3,
.usp-item:hover p {
    color: white;
}

/* Responsive (Stack on Small Screens) */
@media (max-width: 768px) {
    .usp-list {
        flex-direction: column;
        align-items: center;
    }

    .usp-item {
        text-align: center;
        max-width: 100%;
        min-height: auto; /* Reset height for mobile */
        transform: none !important; /* Remove up-down effect on mobile */
    }
}

/* footer */
/* Footer Top Section with Background Image */
.footer-top {
    background: url('img/footer_img_withbac.png') no-repeat center bottom;
    background-size: contain; /* Fits the whole image */
    padding: 40px 0;
    background-color: #fff;
}


/* Flexbox for Footer Content */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 220px;
    margin: 10px;
}

/* Logo Styling */
.footer-section.logo img {
    width: 244px;
}

/* Quick Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #897d7d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
/*        flex-direction: column;*/
 min-height: auto;
        text-align: left;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
  
}

/* Footer Bottom Section */
/* Footer Bottom Section */
.footer-bottom {
    background: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between; /* Align left and right */
    align-items: center;
    flex-wrap: nowrap; /* Prevent items from stacking */
    width: 100%;
}

/* Copyright text (left side) */
.footer-bottom .copyright {
    margin: 0;
    color: #d5d5d5;
    font-size: 14px;
    text-align: left;
    flex: 1; /* Pushes content to left */
}

/* Privacy policy text (right side) */
.footer-bottom .privacy {
    margin: 0;
    color: #d5d5d5;
    font-size: 14px;
    text-align: right;
    white-space: nowrap; /* Prevents text from breaking into a new line */
    float: right;
}
.privacy a{
        text-decoration: none;
    color: #d5d5d5;
}

.footer-section p{
    color: #897d7d;
    text-align: left;
    margin-bottom: 0;
}
.footer-section h3{
    margin-bottom: 22px;
}
.footer-top{
border-bottom:1px solid #f5f1f1;
;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .privacy,
    .footer-bottom .copyright {
        margin: 5px 0;
    }
}


.tooltip {
    position: relative;
    display: inline-block;
    margin-right: 10px; /* Space between tooltips */
}

/* Tooltip Text */
.tooltip .tooltip-text {
    visibility: hidden;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Tooltip Arrow */
.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* Show Tooltip on Hover */
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
