@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;700&display=swap');
/* Optional custom styling */
 .navbar {
    transition: transform 0.3s ease-in-out;
}
.navbar-hide {
    transform: translateY(-100%);
    }


    /* Modern slim scrollbar - works in Chrome/Edge/Safari */
    ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    }

    ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light silver track */
    border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
    background: #c0c0c0; /* Silver scroll thumb */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Creates the slim effect */
    }

    ::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8; /* Darker silver on hover */
    }

    /* Firefox support */
    html {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f1f1f1;
    }
/* Scroll line */
   /* Blue Gradient Scroll Indicator */
   .scroll-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 10px;
    width: 0;
    background: linear-gradient(90deg, #0d6efd, #00aaff, #0d6efd);
    z-index: 1000;
    transition: width 0.2s ease-out;
}

/* hero content in here  */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
    position: absolute;
    top: 0;
    left: 0;
}
  
    /* Add this for blue overlay */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(8, 77, 182, 0.746); /* Bootstrap primary blue with 30% opacity */
        z-index: 1;
    }

    

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    /* background: linear-gradient(120deg, #0d6efd, #6610f2); */
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-content .container {
    max-width: 900px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    min-height: 100px;
    animation: fadeIn 1s ease-in-out;
    transition: all 0.5s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About US  */
/* About Us Section Styles */
.about_us_section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: white;
}

/* Remove the gradient background */
.about_us_section::before {
    display: none; /* Remove the gradient layer */
}

/* Wave effect at bottom - modified to be more subtle */
/* About Us Section Styles */

/* Sea-colored wave effect at bottom */
.about_us_section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; /* Slightly taller wave */
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23006699" opacity="0.25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%230088cc" opacity="0.5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2300aaff"/></svg>');
    background-size: cover;
    z-index: 1;
    background-repeat: no-repeat;
}


/* Image container styling */
.about_us_image_container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about_us_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text overlay on image */
.about_us_image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(69, 143, 255, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 30px;
}

/* Content area adjustments */
.about_us_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.about_us_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d6efd;
}

.about_us_text {
    font-size: 1.0rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about_us_image_container {
        margin-bottom: 50px;
    }
    
    .about_us_content {
        padding: 0;
    }
}

/* our mission section */
     /* Mission Card Styles */
.our_mission_section-title {
font-size: 2.5rem;
font-weight: 700;
color: #0d6efd;
}

.section-subtitle {
font-size: 1.2rem;
color: #555;
}

.our_mission_card {
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
border-radius: 20px;
padding: 2rem;
text-align: center;
box-shadow: 0 15px 30px rgba(0, 110, 253, 0.15);
position: relative;
overflow: hidden;
transition: all 0.4s ease;
opacity: 0;
transform: translateY(30px);
}

.our_mission_card::before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 4px;
width: 100%;
background: linear-gradient(90deg, #0d6efd, #00c6ff, #0d6efd);
animation: bar-slide 5s linear infinite;
}

@keyframes bar-slide {
0% { background-position: 0% }
100% { background-position: 100% }
}

.our_mission_card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 110, 253, 0.25);
}

.our_mission_icon {
font-size: 3rem;
color: #0d6efd;
margin-bottom: 1rem;
}

.our_mission_title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #0d6efd;
}

.our_mission_text {
font-size: 1rem;
color: #333;
font-weight: 400;
line-height: 1.5;
}

/* Animation scroll effect */
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
}

.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
.our_mission_title {
    font-size: 1.3rem;
}

.our_mission_text {
    font-size: 0.95rem;
}

.our_mission_icon {
    font-size: 2.5rem;
}
}

/* Projects  */
.projects-header {
    position: relative;
    height: 30vh;
    overflow: hidden;
    margin-bottom: 3rem;
}

.projects-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(26, 94, 197, 0.669);
}

.projects-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #0d6efd;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.projects-title {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.projects-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .projects-header {
        height: 50vh;
    }
    
    .projects-icon {
        font-size: 3rem;
    }
    
    .projects-title {
        font-size: 2.5rem;
    }
    
    .projects-subtitle {
        font-size: 1.2rem;
    }
}

/* Projects cards */
.projects_cards-card {
    border:4px solid blue;
    border-radius: 15px;
    padding: 2rem 1rem;
    color: rgb(61, 61, 210);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
    opacity: 0;
    transform: translateY(30px);
  }
  
  .projects_cards-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.35);
  }
  
  .projects_cards-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
  }
  
  .projects_cards-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
  }
  
  .projects_cards-count {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
  }
  
  .projects_cards-sub {
    font-size: 0.95rem;
    color: #000000;
    margin-top: 0.25rem;
  }
  
  /* Animation on scroll */
  .animate-on-scroll {
    transition: all 0.8s ease;
  }
  
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 { transition-delay: 0.2s; }
  .delay-2 { transition-delay: 0.4s; }
  .delay-3 { transition-delay: 0.6s; }
  
  /* Responsive Text */
  @media (max-width: 768px) {
    .projects_cards-count {
      font-size: 1.8rem;
    }
  }
  
  /* Projects list */

  .main_project_lists{
        background-color: #f8f9fa;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .project_lists .card {
    background: #fff;
    border: 2px solid transparent;
    /* border-image: linear-gradient(to right, #007bff, #00c6ff); */
    border-image-slice: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .project_lists .card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .project_lists .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1rem;
  }

  .project_lists .card-text {
    font-size: 1.05rem;
    color: #343a40;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #0d6efd;
    border-radius: 50%;
    padding: 10px;
  }

  .carousel-inner {
    animation: fadeIn 1s ease-in-out;
  }
  .project_lists .media-element {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* Service section */
.tech-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 180, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: pulse 4s ease infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

.services-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 10px 0;
}

.service-heading {
    position: relative;
    display: inline-block;
}

.service-heading i {
    color: #007bff;
    margin-right: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-description {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-border {
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00b4ff);
    width: 100px;
    margin: 20px auto;
    position: relative;
}

.tech-border::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007bff;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

/* cards in service */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2) !important;
}

.card-img-container {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.card-img-top {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 700;
    color: #007bff;
}

.price-text {
    font-weight: 600;
}

.original-price {
    font-size: 0.9rem;
}

.service-list {
    flex-grow: 1;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.see-more-btn {
    color: #007bff;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.additional-services {
    display: none;
}

.services-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    color: #212529;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #00b4ff);
    margin: 15px auto;
}

/* FAQ */
.faq_main {
    /* background-color: #000; */
    color: #fff;
  }
  .accordion-button {
    background-color: #d5d5d54f;
    color: #fff;
    border: 1px solid #0d6efd;
    font-weight: bold;
  }
  .accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
  }
  .accordion-body {
    /* background-color: #111; */
    color: #000000;
    border-left: 3px solid #0d6efd;
  }
  .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
  }
  .accordion-button::after {
    content: "\f282";
    font-family: "Bootstrap-icons";
    transform: rotate(90deg);
  }
  .accordion-button.collapsed::after {
    transform: rotate(0deg);
  }

  .faq-card {
    /* border: 1px solid #ccc; */
    padding: 20px;
    margin: 10px;
    /* display: none; */
  }
  .card-header {
    background-color: #f8f9fa;
  }

  .faq-header {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 3rem;
}

.faq-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,123,255,0.7) 0%, rgba(0,180,255,0.5) 100%);
}

.faq-header img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.faq-header .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 1rem;
    background-color: #023c7a5d;
}

.faq-icon {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.faq-header:hover .faq-icon {
    background-color: rgba(255,255,255,0.3);
}

.faq-header:hover .faq-icon i {
    transform: rotate(15deg) scale(1.1);
}

.faq-title {
    color: white;
    font-weight: 700;
    font-size: 2.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
/* contact section */
        /* Contact Section Styles */
        .contact_section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 80px 0;
        }
        
        .contact_container {
            background: white;
            border-radius: 20px;
            box-shadow: 10px 25px 20px -12px rgba(0, 0, 0, 0.807);
            overflow: hidden;
        }
        
        .contact_container:hover {
            box-shadow: 0 30px 60px -12px rgba(0, 110, 253, 0.25);
        }
        
        /* Left Side */
        .contact_info {
            padding: 50px;
            background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
            color: white;
            height: 100%;
            position: relative;
        }
        
        .contact_info::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .contact_info_title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }
        
        .contact_info_title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: white;
        }
        
        .contact_detail {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact_icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: white;
        }
        
        .contact_social {
            margin-top: 40px;
        }
        
        .contact_social_icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
            color: white;
        }
        
        .contact_social_icon:hover {
            background: white;
            color: #0d6efd;
            transform: translateY(-5px);
        }
        
        /* Right Side */
        .contact_form {
            padding: 50px;
        }
        
        .contact_form_title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #0d6efd;
            position: relative;
        }
        
        .contact_form_title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #0d6efd;
        }
        
        .contact_input_group {
            position: relative;
            margin-bottom: 20px;
        }
        
        .contact_input_icon {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #0d6efd;
            z-index: 2;
        }
        
        .form-control,
        .form-select {
            padding: 12px 15px 12px 45px;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            background: transparent;
            transition: 0.3s;
            width: 100%;
        }
        
        textarea.form-control {
            padding-left: 15px;
        }
        
        .form-control:focus,
        .form-select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            outline: none;
        }
        
        .contact_submit_btn {
            background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            transition: 0.3s;
            width: 100%;
        }
        
        .contact_submit_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .contact_info,
            .contact_form {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .contact_container {
                box-shadow: none;
                border-radius: 0;
            }
        
            .contact_info {
                border-radius: 20px 20px 0 0;
            }
        
            .contact_form {
                border-radius: 0 0 20px 20px;
            }
        }
        


/* footer  */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 50px 20px 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00b4ff);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #007bff;
}

.footer-links h5 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #00b4ff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
    padding-left: 5px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #007bff;
    transform: translateY(-5px);
}

.contact-info {
    color: #adb5bd;
    line-height: 1.6;
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    color: #adb5bd;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    position: relative;
}

/* Responsive styles */
@media (max-width: 767px) {
    .footer {
        padding: 40px 20px 80px;
        text-align: center;
    }

    .footer .row > div {
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        padding-left: 0;
    }

    .contact-info {
        font-size: 15px;
    }
}


/* project execution cards */
.process_main {
    background-color: #eeeded71;
    color: #000;
    font-family: 'Segoe UI', sans-serif;
  }

  .step-section {
    padding: 60px 20px;
  }

  .step-title {
    color: #0d6efd;
    font-weight: bold;
    margin-bottom: 40px;
  }

  .step-card {
    background-color: #f8f9fa;
    border: 2px solid #0d6efd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-icon {
    font-size: 32px;
    background: #0d6efd;
    color: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
  }

  .arrow-right {
    font-size: 30px;
    color: #0d6efd;
    padding: 10px;
    margin: 0 10px;
  }

  .step-flow-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .step-card p {
    font-size: 14px;
    margin-top: 10px;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .step-flow-row {
      flex-direction: column;
      text-align: center;
    }
    .arrow-right {
      display: none; /* Hide arrows on small screens */
    }
  }
    