*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

#hero {
    position: relative;
    height: 75vh;
    background-image: url('./images/webdevbg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Overlay to darken the background for better readability */
#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.568);
    z-index: 1;
}

/* Main content of hero section */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

/* Main Headline Styling */
.main-headline {
    font-size: 3.2rem;
    font-weight: bold;
    margin-top: 7%;
    /* margin-bottom: 20px; */
    animation: fadeInDown 1s ease-in-out;
}

/* Sub-Headline Styling */
.sub-headline {
    font-size: 1.5rem;
    margin-top: 2%;
    /* margin-bottom: 10px; */
    animation: fadeInUp 1s ease-in-out;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Laptop and Mobile Mockups */
.mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* Laptop Mockup */
.laptop {
    position: relative;
    width: 50%;
    max-width: 600px;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-in-out forwards;
}

.laptop img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Mockup */
.mobile {
    position: relative;
    width: 30%;
    max-width: 300px;
    margin-left: -100px;
    animation: slideInRight 1.5s ease-in-out forwards;
}

.mobile img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
/* Keyframe Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }

    .sub-headline {
        font-size: 1.2rem;
    }

    .mockups {
        flex-direction: column;
    }

    .laptop {
        width: 80%;
        transform: translateX(0);
    }

    .mobile {
        width: 50%;
        margin-left: 0;
    }
}

/* <--------------------------section-3 css----------------------------------------> */


.container-11 {
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.427);
    max-width: 1300px;
    margin: 0px auto;
}

.content-1 {
    width: 60%;
}

.content-1 h2 {

    color: #1078BF;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size:2.5rem;
    margin-bottom: 10px;
}

.content-1 h3 {
    color: #084c7f;
    /* color: #666; */
    font-size: 24px;
    margin-bottom: 20px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.content-1 p {
    /* color: #444; */
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.2rem;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    /* font-style: italic; */
    font-weight: 500;
    color: #2C3E50;
}

/* .btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #0056b3;
} */

.image {
    width: 35%;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}





.icon-container {
    /* margin-top: 2%; */
    display: flex;
    justify-content: space-around;
    /* margin-top: 10px; */
    flex-wrap: wrap; /* Wrap icons on smaller screens */
    background-color: #fdfdfd;
    height: 150px;
    padding-top: 25px;
}

.icon-card {
    text-align: center;
    margin: 10px;
    transition: transform 0.3s; /* Animation on hover */
}

.icon-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.icon {
    width: 60px; /* Set icon size */
    height: 60px; /* Set icon size */
}

/* <------------------section-4/css-why custom web development-----------------> */
.why-custom {
    padding: 50px 0;
    background:#E5F3FF;
    /* background: #f9f9f9; */
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
}

.section-intro {
    font-size: 1.1em;
    color: #777;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease forwards;
}

/* Reasons Cards Styling */
.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reason-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(25% - 40px);
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUp 2.5s ease forwards;
}

.reason-card i{
    color: #5bb949;
    margin: 10px;
}
/* .reason-card :hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 } */
.reason-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
} 

.reason-title {
    font-size: 1.5em;
    color: #3498db;
    margin-bottom: 15px;
}

.reason-description {
    font-size: 1em;
    color: #555;
}

/* CTA Button */

.cta-button1 {
    /* background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
 */
    
display: inline-block;
margin-top: 40px;
padding: 15px 30px;
background-color: #007bff;
color: #fff;
border-radius: 50px;
text-decoration: none;
font-size: 1.2em;
transition: background-color 0.3s ease;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 3s ease forwards;
}

.cta-button1:hover {
    background-color: #2980b9;
}


/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .reasons-container {
        flex-direction: column;
        align-items: center;
    }

    .reason-card {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* -----------------section-4 /custom-web solutions-------------------- */

.solutions-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px;
    
    background-color: #FFFFFF;
    border-radius: 8px;
  }
  
  #main-heading123{
    text-align: center;
    font-size: 2.5rem;
    color: #333;
  }
  
  .solution {
    margin-bottom: 20px;
  }
  
  .solution h3 {
    font-size: 2rem;
    color: #1078BF;
    padding-top: 2%;
  }
  
  .solution p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
  }
  p{
      font-size: 1.2rem;
      margin-bottom: 1rem;
  }
  
  .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .tech-item {
    flex: 1;
    min-width: 180px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .tech-item img{
    height: 100px;
   }

  .tech-item:hover {
    transform: translateY(-10px);
    background-color: #e8f1ff;
  }
  
  .tech-item h4 {
    font-size: 1.4rem;
    color: #084C7F;
   
    margin-bottom: 10px;
  }
  
  .tech-item p {
    font-size: 1rem;
    color: #333;
  }
  
  .cta {
    text-align: center;
    margin-top: 50px;
  }
  
  .cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #28a745;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #218838;
  }
  
  @media (max-width: 768px) {
    .tech-list {
      flex-direction: column;
    }
  
    .tech-item {
      margin-bottom: 20px;
    }
  } 
  
  
  /* --------------------------why-us section-6--------------------- */
  

.why-us {
    background-color: aliceblue;
    /* background-color: #f5f5f5; */
    padding: 50px 0;
    text-align: center;
  
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.why-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.why-us-text {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.why-us-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.why-us-text ul {
    margin-top: 15px;
    list-style-type: none;
    padding-left: 0;
}

.why-us-text ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.why-us-image {
    flex: 1;
    text-align: center;
}

.why-us-image img {
    max-width: 100%;
    height: auto;
}

.why-us-icons {
    margin-top: 30px;
}

.why-us-icons img {
    width: 50px;
    margin: 0 15px;
    transition: transform 0.3s ease-in-out;
}

.why-us-icons img:hover {
    transform: scale(1.1);
}
/* .accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.accordion-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between; /* Aligns the title to the left and icon to the right */
    /* align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    position: relative;
    padding: 10px 0;
} */




 */

 accordion {
    list-style: none;
    padding: 0;
}

.accordion li {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.accordion li:hover {
    background-color: #e9e9e9;
}

.accordion-title {
    padding: 15px;
    font-weight: bold;
    color: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    background-color: #fff;
}

.accordion-content p {
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
}

/* Active class for open accordion */
.accordion li.active .accordion-content {
    max-height: 150px; /* Adjust this value based on content size */
}

.accordion li.active .accordion-title {
    color: #007BFF; /* Highlight active title */
}

.accordion-title .bx-plus{
    font-size: 20px;
    transition: transform 0.3s ease;
    /* padding-left: 95%; */
    /* padding-bottom: 10px; */
}

.accordion-item.open .accordion-title .bx-plus{
    transform: rotate(45deg); /* Rotate the plus icon to indicate the section is open */
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-us-content {
        flex-direction: column;
        text-align: center;
    }

    .why-us-text {
        padding: 0;
    }

    .why-us-icons img {
        width: 40px;
        margin: 10px;
    }
}


/* ---------------------our-partners--------------------------- */
.homepage-partners {
    padding: 60px 20px;
    /* background-color: #f0f8ff; */
    background-color: #fff;
    text-align: center;
}

/* Title Styling */
.homepage-partners-title {
    font-size: 2.5rem;
    color: #333;
    font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Description Styling */
.homepage-partners-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
}

/* Partners Row Styling */
.homepage-partners-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;  /* Allows wrapping for smaller screens */
    align-items: center;
    gap: 20px; /* Add space between logos */
    max-width: 1200px; /* Limit the row width */
    margin: 0 auto; /* Center the row */
}

/* Partner Logo Styling */
.partner-logo {
    width: 120px; /* Fixed width */
    height: 100px; /* Increased height */
    object-fit: contain; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .homepage-partners-row {
        justify-content: space-around; /* Space logos evenly for smaller screens */
    }
}

@media (max-width: 768px) {
    .partner-logo {
        width: 100px; /* Smaller fixed width for mobile */
        height: 80px; /* Smaller fixed height for mobile */
    }

    .homepage-partners-row {
        flex-wrap: wrap; /* Make sure the logos wrap for smaller screens */
    }
}



/* -------------------------testimonials----------------------------- */

.homepage-testimonials {
    background: url('https://i.ibb.co/PTJDkgb/testimonials.jpg') center center / cover no-repeat;
    opacity: 1000px;
    /* background: linear-gradient(45deg,#3d93cc,rgb(220, 217, 237)); */
    padding: 50px 0;
    color: white;
  }
  
  .homepage-testimonials_container {
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  .homepage-testimonials_heading {
    font-size: 2.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .homepage-testimonials_carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .homepage-testimonials_inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .homepage-testimonials_item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  
  .homepage-testimonials_image {
    border-radius: 50%;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .homepage-testimonials_quote {
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 20px 0;
  }
  
  .homepage-testimonials_client {
    font-size: 1.4rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
  }
  
  .homepage-testimonials_control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s ease;
    z-index: 10; /* Ensure buttons are on top */
  }
  
  .homepage-testimonials_control:hover {
    background: rgba(255, 255, 255, 1);
  }
  
  .homepage-testimonials_control-prev {
    left: 10px; /* Adjust distance from the edge */
  }
  
  .homepage-testimonials_control-next {
    right: 10px; /* Adjust distance from the edge */
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .homepage-testimonials_heading {
      font-size: 1.5rem; /* Decrease font size for smaller screens */
    }
  
    .homepage-testimonials_quote {
      font-size: 1rem; /* Decrease font size for smaller screens */
    }
  
    .homepage-testimonials_client {
      font-size: 1.1rem; /* Decrease font size for smaller screens */
    }
  }

  *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

#hero {
    position: relative;
    height: 75vh;
    background-image: url('../images/webdevbg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    /* margin-top: 5%; */
}

/* Overlay to darken the background for better readability */
#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Main content of hero section */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

/* Main Headline Styling */
.main-headline {
    font-size: 3.2rem;
    font-weight: bold;
    margin-top: 7%;
    /* margin-bottom: 20px; */
    animation: fadeInDown 1s ease-in-out;
}

/* Sub-Headline Styling */
.sub-headline {
    font-size: 1.5rem;
    margin-top: 2%;
    /* margin-bottom: 10px; */
    animation: fadeInUp 1s ease-in-out;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Laptop and Mobile Mockups */
.mockups {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* Laptop Mockup */
.laptop {
    position: relative;
    width: 50%;
    max-width: 600px;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-in-out forwards;
}

.laptop img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Mockup */
.mobile {
    position: relative;
    width: 30%;
    max-width: 300px;
    margin-left: -100px;
    animation: slideInRight 1.5s ease-in-out forwards;
}

.mobile img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
/* Keyframe Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    #hero{
        height: 65vh;
    }
    .main-headline {
        font-size: 2rem;
        padding-top: 15%;
    }

    .sub-headline {
        font-size: 1.2rem;
    }

    .mockups {
        flex-direction: column;
    }

    .laptop {
        width: 80%;
        transform: translateX(0);
    }

}

/* <--------------------------section-3 css----------------------------------------> */


.container-11 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1300px;
    margin: 0px auto;
    /* border: 2px solid red; */
}

.content-1 {
    width: 60%;
}

.content-1 h2 {

    color: #1078BF;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size:2.5rem;
    margin-bottom: 10px;
}

.content-1 h3 {
    color: #084c7f;
    /* color: #666; */
    font-size: 24px;
    margin-bottom: 20px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.content-1 p {
    /* color: #444; */
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.2rem;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    /* font-style: italic; */
    font-weight: 500;
    color: #2C3E50;
}

#custom-ow-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 40%;
}

#custom-ow-btn:hover {
    background-color: #5bb94f;
}

.image {
    width: 35%;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-container {
    display: flex;
    justify-content: space-around;
    margin-top: 0px;
    flex-wrap: wrap; /* Wrap icons on smaller screens */
    background-color: #fdfdfd;
    height: 150px;
    padding-top: 25px;
}

.icon-card {
    text-align: center;
    margin: 10px;
    transition: transform 0.3s; /* Animation on hover */
}

.icon-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.icon {
    width: 60px; /* Set icon size */
    height: 60px; /* Set icon size */
}
@media (max-width: 768px) {
    .container-11 {
        flex-direction: column;
        width: 100%;
        /* border: 2px solid; */
        padding: 10px;
        display: flex;
        /* justify-content: space-between;
        border-radius: 10px; */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
       /* margin: 0px auto; */
    }

    .content-1 {
        width: 100%;
        /* padding: 10px; */
    }
    /* Set heading and subheading in a single line, 100% width */
    .content-1 h2 {
        padding: 0;
        width: 100%;
       
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
        margin: 0;
        /* border: 2px solid red; */
    }

    .content-1 h3 {
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 900;
        margin: 0;
        color: #555;
        /* border: 2px solid red; */
    }

    /* Image at full width */
    .image {
        order: 1;
        width: 100%;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .image img {
        width: 100%;
        height: auto;
    }

    /* Paragraphs at full width and justified */
    .content-1 p {
        width: 100%;
        text-align: justify;
        margin: 10px 0;
        font-size: 1.1rem;
        line-height: 1.2;
        color: #333;
    }

    /* Button full-width */
    .btn {
        width: 50%;
        padding: 10px 0;
        background-color:#007bff;
        color: white;
        border: none;
        cursor: pointer;
        margin-top: 15px;
        margin-left: 25%;
    }
}

/* <------------------section-4/css-why custom web development-----------------> */
.why-custom {
    padding: 50px 0;
    background:#E5F3FF;
    /* background: #f9f9f9; */
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
}

.section-intro {
    font-size: 1.1em;
    color: #777;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease forwards;
}

/* Reasons Cards Styling */
.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reason-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(25% - 40px);
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUp 2.5s ease forwards;
}
/* .reason-card :hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
 } */
.reason-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
} 

.reason-title {
    font-size: 1.5em;
    color: #3498db;
    margin-bottom: 15px;
}

.reason-description {
    font-size: 1em;
    color: #555;
}

/* CTA Button */

.cta-button1 {  
display: inline-block;
margin-top: 40px;
padding: 15px 30px;
background-color: #007bff;
color: #fff;
border-radius: 50px;
text-decoration: none;
font-size: 1.2em;
transition: background-color 0.3s ease;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 3s ease forwards;
}

.cta-button1:hover {
    background-color: #2980b9;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cta-button1{
       padding: 10px;
       font-size: 1rem;
    }
    .why-custom{
        margin-top: 25%;
    }
    .section-title{
        font-size: 1.5rem;
    }

    .reasons-container {
        flex-direction: column;
        align-items: center;
    }

    .reason-card {
        width: 80%;
        margin-bottom: 20px;
    }
}


/* -----------------section-4 /custom-web solutions-------------------- */

.solutions-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px;
    
    background-color: #FFFFFF;
    border-radius: 8px;
  }
  
  #main-heading123{
    text-align: center;
    font-size: 2.5rem;
    color: #333;
  }
  
  .solution {
    margin-bottom: 20px;
  }
  
  .solution h3 {
    font-size: 2rem;
    color: #1078BF;
   
    padding-top: 3%;
    
  }
  
  .solution p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
  }
  p{
    
      font-size: 1.2rem;
      margin-bottom: 1rem;
  }
  
  .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .tech-item {
    flex: 1;
    min-width: 160px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .tech-item:hover {
    transform: translateY(-10px);
    background-color: #e8f1ff;
  }
  
  .tech-item h4 {
    font-size: 1.4rem;
    color: #084C7F;
   
    margin-bottom: 10px;
  }
  
  .tech-item p {
    font-size: 1rem;
    color: #333;
  }
  
  .cta {
    text-align: center;
    margin-top: 50px;
  }
  
  .cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #28a745;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #218838;
  }
  
  @media (max-width: 768px) {
    
    
.solutions-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    
    background-color: #FFFFFF;
    border-radius: 8px;
  }
    #main-heading123{
    
    font-size: 1.8rem;
    color: rgb(12, 241, 12);
    }
    .solution h3{
         font-size: 1.5rem;
         padding-top: 5%;
        
    }
    .tech-list {
      flex-direction: column;
    }
  
    .tech-item {
      margin-bottom: 20px;
    }
  } 
  
  
  /* --------------------------why-us section-6--------------------- */
  

.why-us {
    background-color: aliceblue;
    /* background-color: #f5f5f5; */
    padding: 50px 0;
    text-align: center;
  
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.why-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.why-us-text {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.why-us-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.why-us-text ul {
    margin-top: 15px;
    list-style-type: none;
    padding-left: 0;
}

.why-us-text ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.why-us-image {
    flex: 1;
    text-align: center;
}

.why-us-image img {
    max-width: 100%;
    height: auto;
}

.why-us-icons {
    margin-top: 30px;
}

.why-us-icons img {
    width: 50px;
    margin: 0 15px;
    transition: transform 0.3s ease-in-out;
}

.why-us-icons img:hover {
    transform: scale(1.1);
}
 .accordion {
    list-style: none;
    padding: 0;
}

.accordion li {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.accordion li:hover {
    background-color: #e9e9e9;
}

.accordion-title {
    padding: 15px;
    font-weight: bold;
    color: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    background-color: #fff;
}

.accordion-content p {
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
}

/* Active class for open accordion */
.accordion li.active .accordion-content {
    max-height: 150px; /* Adjust this value based on content size */
}

.accordion li.active .accordion-title {
    color: #007BFF; /* Highlight active title */
}

.accordion-title .bx-plus{
    font-size: 20px;
    transition: transform 0.3s ease;
    /* padding-left: 95%; */
    /* padding-bottom: 10px; */
}

.accordion-item.open .accordion-title .bx-plus{
    transform: rotate(45deg); /* Rotate the plus icon to indicate the section is open */
}

/* Responsive Design */
@media (max-width: 768px) {
   
    .why-us h2{
    font-size: 2rem;
    }
    .why-us-content {
        flex-direction: column;
        text-align: center;
    }

    .why-us-text {
        padding: 5;
    }

    .why-us-icons img {
        width: 40px;
        margin: 10px;
    }
}


/* ---------------------our-partners--------------------------- */
.homepage-partners {
    padding: 60px 20px;
    /* background-color: #f0f8ff; */
    background-color: #fff;
    text-align: center;
}

/* Title Styling */
.homepage-partners-title {
    font-size: 2.5rem;
    color: #333;
    font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Description Styling */
.homepage-partners-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
}

/* Partners Row Styling */
.homepage-partners-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;  /* Allows wrapping for smaller screens */
    align-items: center;
    gap: 20px; /* Add space between logos */
    max-width: 1200px; /* Limit the row width */
    margin: 0 auto; /* Center the row */
}

/* Partner Logo Styling */
.partner-logo {
    width: 120px; /* Fixed width */
    height: 100px; /* Increased height */
    object-fit: contain; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .homepage-partners-row {
        justify-content: space-around; /* Space logos evenly for smaller screens */
    }
}

@media (max-width: 768px) {
    .partner-logo {
        width: 100px; /* Smaller fixed width for mobile */
        height: 80px; /* Smaller fixed height for mobile */
    }

    .homepage-partners-row {
        flex-wrap: wrap; /* Make sure the logos wrap for smaller screens */
    }
}



/* -------------------------testimonials----------------------------- */

.homepage-testimonials {
    background: url('https://i.ibb.co/PTJDkgb/testimonials.jpg') center center / cover no-repeat;
    opacity: 1000px;
    /* background: linear-gradient(45deg,#3d93cc,rgb(220, 217, 237)); */
    padding: 50px 0;
    color: white;
  }
  
  .homepage-testimonials_container {
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  .homepage-testimonials_heading {
    font-size: 2.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .homepage-testimonials_carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .homepage-testimonials_inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .homepage-testimonials_item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
  }
  
  .homepage-testimonials_image {
    border-radius: 50%;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .homepage-testimonials_quote {
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 20px 0;
  }
  
  .homepage-testimonials_client {
    font-size: 1.4rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: bold;
  }
  
  .homepage-testimonials_control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s ease;
    z-index: 10; /* Ensure buttons are on top */
  }
  
  .homepage-testimonials_control:hover {
    background: rgba(255, 255, 255, 1);
  }
  
  .homepage-testimonials_control-prev {
    left: 10px; /* Adjust distance from the edge */
  }
  
  .homepage-testimonials_control-next {
    right: 10px; /* Adjust distance from the edge */
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .homepage-testimonials_heading {
      font-size: 1.5rem; /* Decrease font size for smaller screens */
    }
  
    .homepage-testimonials_quote {
      font-size: 1rem; /* Decrease font size for smaller screens */
    }
  
    .homepage-testimonials_client {
      font-size: 1.1rem; /* Decrease font size for smaller screens */
    }
  }




  /* --------------------chatbot-------------------------------------- */
  #chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4ad62e;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#chatbot-icon:hover {
    background-color: #0056b3;
}

/* Chatbot Form Popup Styling */
#chatbot-form-popup {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: white;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    z-index: 1001;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.form-content .close-btn {
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

.form-content .close-btn:hover {
    color: #000;
}

h2 {
    color: #007bff;
    font-size: 18px;
    margin-top: 0;
    text-align: center;
}

/* Styling for form fields */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

input[type="text"], input[type="email"], textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

textarea {
    min-height: 60px;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Submit button styling */
button[type="submit"] {
    /* background-color: #007bff; */
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}
/* ********************************* */
#custom-web-contact{
    /* border: 1px solid red; */
    width: 100%;
    height: 100%;
    margin-top: 1%;
    padding: 20px 0px;
    padding-bottom: 30px;
    background: linear-gradient(180deg,#e5f3ff,#f8f9fa,#f8f9fa,#e5f3ff,#e5f3ff);
  } 
  #custom-web-sub-contact{
    /* border: 1px solid blue; */
    width: 75%;
    margin: auto;
    height: 100%;
    padding: 0px 90px;
    /* background: linear-gradient(45deg,#f8f9fa, #e5f3ff,#2c3e50); */
  }
  #custom-web-sub-contact>h2{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2rem;
    text-align: center;
    color: #084c7f;
  }
  #custom-web-sub-contact>p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    word-spacing: 1px;
    text-align: center;
  }
  #custom-contact-btn{
    border: 1px solid gray;
    border-radius: 4px;
    padding: 10px 15px;
    background-color: #4a9f3b;
    margin-left: 42%;
    margin-top: 20px;
    color: white;
  }
  #custom-contact-btn:hover{
    background-color: #084c7f;
    color: white;
  }
  
  #custom-contact-btn>a{
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
  }

  @media screen and (320px <= width <= 480px){
    #custom-web-contact{
      padding: 0 0;
    }
    #custom-web-sub-contact{
      width: 95%;
      padding: 0px 10px;
    }
    #custom-web-sub-contact>h2{
      font-size: 1rem;
    }
    #custom-web-sub-contact>p{
      font-size: 0.8rem;
      margin-top: 4%;
    }
  
  #custom-contact-btn{
    padding: 5px 10px;
    margin-left: 26%;
    margin-bottom: 30px;
  }
  
    #custom-contact-btn>a{
      font-size: 0.9rem;
}
}
