body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #180958;
    color: white;
}

header {
    
    padding: 15px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    flex: 1;
    text-align: left;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex: 2;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.connect-btn {
    background: transparent;
    border: 1px solid white;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    text-align: right;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('assets/computer.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    padding: 50px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 20px;
}

.primary {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.about-container {
    display: flex;
    max-width: 1200px;
    align-items: center;
    gap: 50px;
}

.about-image {
    position: relative;
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding-left: 60px;
}

.social-icons {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 15px;
}

.social-icons {
    justify-content: center;
}

.about-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-right: 60px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Main Container */
.services-container {
    text-align: center;
    padding: 50px 20px;
}

.main-heading {
    font-size: 32px;
    margin-bottom: 30px;
}

.card7 {
    display: flex; /* Enables flexbox */
    align-items: center; /* Vertically center the items */
    justify-content: space-between; /* Space between the text and image */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    /*border-top: 2px solid white; /* Top underline */
    border-bottom: 2px solid white; /* Bottom underline */
}

.card7 .text-content {
    flex: 1; /* Take up the available space */
    padding-right: 20px; /* Add padding to the right */
    padding-left: 30px;
    text-align: left; /* Align text to the left */
}

.card7 .image-content {
    flex: 1; /* Take up the available space */
    text-align: right; /* Align image to the right */
    padding-left: 20px;
    padding-right: 30px;
}

.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.text-content {
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

.image-content {
    flex: 1;
    text-align: right;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
/* feature details */


/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ffffff;
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.featured-work {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.card {
    display: flex;
    background-color: transparent; /* Card background */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-image img {
    max-width: 100%;
    height: auto;
}

.card-details {
    padding: 20px;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5em;
    margin: 0;
    color: #ffffff; /* Title color */
}

.card-description {
    margin: 10px 2;
    font-size: 1em;
    color: #ffffff; /* Description color */
}

.card-stack {
    display: inline-block;
    background-color: #0c59cc; /* Category background */
    color: #ffffff; /* Category text color */
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.project-details {
    display: inline-block;
    margin-top: 10px;
    color: #0a4194; /* Details link color */
    text-decoration: none;
    font-weight: bold;
}

.featured-work {
    padding: 60px 20px;
    text-align: center;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns per row */
    gap: 20px; /* Space between cards */
    max-width: 1200px; /* Adjust width as needed */
    margin: auto; /* Center the grid */
}

.work-card {
    background: #04094d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.work-info {
    padding: 20px;
}

.work-info h3 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #fffefe;
}

.work-info p {
    font-size: 1rem;
    color: #e7e5e5;
}

/* why */
.container__stats {
    text-align: center;
    padding: 50px 20px;
}

.header h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.card-stack1 {
    display: inline-block;
    background-color: #0c59cc; /* Category background */
    color: #ffffff; /* Category text color */
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.3s;
}

.card-stack1:hover {
    transform: translateY(-5px);

    border: 2px solid white;
}


.card-layout {
    display: flex;
    justify-content: center;
    gap: 20px; /* Cards ke darmiyan gap */
    flex-wrap: wrap; /* Agar screen choti ho to cards neeche aa sake */
    
}

.card__content {
    /* background: #f9f9f9; */
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.card__content:hover {
    transform: translateY(-5px);
}

.card h1 {
    font-size: 40px;
    margin: 0;
    color: #fdfdfd;
}

.card p {
    font-size: 16px;
    color: #ffffff;
}

.card {
    border: 2px solid white; /* White border for the card */
}


/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 40px 20px;
}

h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns in each row */
    gap: 20px; /* Space between cards */
    justify-content: center;
    max-width: 600px; /* Adjust this value as needed */
    margin: auto; /* Center the grid */
}

.card1 {
    background-color: #3E3E3E;
    border-radius: 8px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.rating {
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial {
    font-size: 14px;
    margin: 10px 0;
}

.author {
    font-weight: bold;
    font-size: 16px;
}
/* footer */
.footer {
    position: relative;
    background: url('assets/footer-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 50px 20px;
    text-align: left;
}

.footer-overlay {
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for better text visibility */
    padding: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: auto;
}

.footer-text p {
    margin: 5px 0;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    
}

.social-icons img {
    width: 32px; /* Adjust the size of icons */
    height: 32px;
    transition: transform 0.3s;
    align-items: right;
}

.social-icons img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}
