@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
.circle {
    animation: load-circle 2s ease-out forwards;
  }
  
  @keyframes load-circle {
    from {
      stroke-dashoffset: 220;
    }
    to {
      stroke-dashoffset: var(--offset);
    }
  }

/* Full Width Wrapper */
.full-width {
    width: 100%;
}

/* Gap between elements */
.flex-column {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.initial-navbar {
    background: rgba(150, 91, 91, 0.8); /* Transparent maroon with light tone */
    color: white;
    border-radius: 9999px;
    width: 90%;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    z-index: 50;
    backdrop-filter: blur(6px);
}

/* Scrolled Navbar */
.scrolled-navbar {
    background: rgba(150, 91, 91, 0.8); /* Slightly darker maroon */
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
    z-index: 50;
    backdrop-filter: blur(6px);
}

/* Navbar Container */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 8px;
}

.logo-bg {
    background: linear-gradient(to right, #FF6F61, #FF4500);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}

/* Navbar Links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #FF6F61;
}
.nav-link.active {
    color: #FF6F61; /* Same as hover color */
    border-bottom: 2px solid #FF6F61; /* Optional underline for highlight */
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 70%;
    left: 0;
    width: 180px;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    color: black;
    margin-top: 8px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px 14px;
    text-decoration: none;
    color: black;
    display: block;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    color: #FF6F61;
    border-left: 4px solid #FF6F61;
}

div#hamburger img {
    width: 34px;
    margin-right: 8px;
    cursor: pointer;
}

/* CTA Button */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-button {
    background: linear-gradient(to right, #FF6F61, #FF4500);
    color: white;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.cta-button:hover {
    filter: brightness(0.9);
}

.cta-icon-container {
    color: white;
    cursor: pointer;
    transition: color 0.3s;
}

.cta-icon-container:hover {
    color: #FF6F61;
}

.cta-icon {
    width: 14px;
    height: 14px;
}

.hamburger-container {
    display: none;
}

/* Responsive Breakpoints */

/* For Tablets */
@media (max-width: 1084px) {
    .navbar-links {
        display: none;
    }
    .cta-button {
        display: none;
    }
    .hamburger-container {
        display: block;
    }
}

/* For Small Devices */
@media (max-width: 600px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 6px 10px;
    }
    .logo-text {
        font-size: 18px;
    }
    .logo-container {
        padding-left: 6px;
    }
}

   html , body{
    width: 100%;

    margin: 0;
    padding: 0;
    overflow-x: hidden;
   }

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: maroon;
    color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.sidebar.show {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-logo {
    font-size: 20px;
    font-weight: bold;
}

.sidebar-close {
    font-size: 24px;
    cursor: pointer;
}

.sidebar-links {
    margin-bottom: 20px;
}

.sidebar-cta {
    text-align: center;
    margin: 20px 0;
}

.sidebar-cta button {
    background: linear-gradient(to right, #FF6F61, #FF4500);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px 0;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    margin: 10px 0;
    border-bottom: 1px solid white;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.sidebar-link:hover {
    color: #f60;
}

/* Dropdown Menu (Initially Hidden) */
.dropdown-menu-services {
    display: none;
    flex-direction: column;
    margin-left: 10px;
}

.dropdown-menu-services a {
    text-decoration: none;
}

.dropdown-menu-services a:hover {
    color: #f60;
}

/* Show Dropdown */
.dropdown-menu-services.show {
    display: flex;
}


.contact-heading-sidebar{
    font-size: 35px;
}

.sidebar-cta button:hover {
    opacity: 0.9;
}

.sidebar-contact h3,
.sidebar-social h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sidebar-contact p {
    font-size: 16px;
    margin: 5px 0;
}

.sidebar-social .social-icons {
    display: flex;
    gap: 10px;
}

.sidebar-contact-icons{
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-icons-container{
    display: flex;
    gap: 10px;
}

.contact-icon-sidebar{
    width: 25px;
    height: 25px;
}

.icon-container{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ffeded3b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container img{
    width: 20px;
    height: 20px;
}

.social-icons i {
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

.social-icons i:hover {
    color: #f60;
}


/* Hero Section */


.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Smooth Opacity Transition */


.content {
    margin-top: 150px;
    transition: opacity 1s ease-in-out; /* 1s fade duration */
    opacity: 1; /* Initially visible */
}

button.prev, button.next {
    position: absolute;
    top: 250px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

button.prev:hover, button.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

button.prev {
    left: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

button.next {
    right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

button.prev img{
    width: 30px;
    height: 30px;
}
button.next img{
    width: 30px;
    height: 30px;
}



.containers {
    display: flex;
    flex-direction: column;
    gap: 20px;
  
    padding: 0 10%;
    background: url('https://via.placeholder.com/1500x800') center/cover no-repeat; /* Transparent image of icons */
    background-color: rgba(255, 255, 255, 0.9); /* Light transparency */
    /* background-blend-mode: overlay; */
    width: 100%;
    height: 600px;
    
}



.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #333;
    margin-top: 120px;
    transition: opacity 0.5s ease;
}

.box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin: 50px 0 20px;
    width: 230px;
    border-radius: 9999px;
    background: rgb(128, 0, 0);
}

.box-text {
    padding: 5px 2rem 30px 2rem;
    color: #ff4500; 
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}


.title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
    color: white;
    margin-top: 50px;
}


.description {
    font-size: 1.1rem;
    max-width: 40%;
    color: #ffffff;
}

.highlighted-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff4500;
    margin-top: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 85%;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    overflow: hidden;
}
/* Tablets */
@media (max-width: 1224px) {
    .containers {
        flex-direction: column;
       
        height: auto;
    }

    .content {
        width: 100%;
        margin-top: 80px;
    }

    .empty-container {
        display: none;
    }

    .title {
        font-size: 2rem;
        margin-top: 30px;
    }

    .description {
        font-size: 1rem;
       
    }

    .input-container {
        flex-direction: column;
        max-width: 100%;
        padding: 10px;
    }

   
}

/* Mobiles */


/* Tablet screens */
@media (max-width: 1224px) {
    button.prev, button.next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
         /* Adjusted top to move buttons higher */
    }

    button.prev {
        left: 5px;
    }

    button.next {
        right: 5px;
    }

    button.prev img,
    button.next img {
        width: 20px;
        height: 20px;
    }
}

/* Mobile screens */
@media (max-width: 576px) {
    button.prev, button.next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: 130px; /* Adjusted top to move buttons higher */
    }

    button.prev {
        left: 2px;
    }

    button.next {
        right: 2px;
    }

    button.prev img,
    button.next img {
        width: 18px;
        height: 18px;
    }
   .content{
    margin: 0px;
    
   }
        .title {
            font-size: 1.2rem;
            margin-top: 0px;
        }
        .description {
            font-size: 0.5rem;
           
        }
        .containers {
            flex-direction: column;
            width: 100%;
           height: 250px;
        }
       
}


.url-input {
    padding: 16px;
    font-size: 0.875rem;
    color: #4b5563;
    border: none;
    outline: none;
    flex-grow: 1;
}

.analyze-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(128, 0, 0, 0.9); /* Transparent maroon */
    color: white;
    padding: 16px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.analyze-button:hover {
    background: maroon;
}

.analyze-text {
    display: block;
}

.analyze-text-mobile {
    display: none;
}

@media (max-width: 640px) {
    .analyze-text {
        display: none;
    }

    .analyze-text-mobile {
        display: block;
    }
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

/* Smooth Scrolling Animation */
@keyframes scroll-animation {
    from {
        background-position-y: 0;
    }
    to {
        background-position-y: 100%;
    }
}

 /* Skill to improve company brand  */

 .about-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 96px; /* Similar to gap-24 */
}

@media (min-width: 1024px) {
    .about-wrapper {
        flex-direction: row;
    }
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    height: 50%;
}

@media (min-width: 1024px) {
    .about-image img {
        height: 100%;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Similar to gap-8 */
    font-weight: 600; /* Similar to font-semibold */
}

.about-badge {
    color: maroon;
    
    width: 160px;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* Rounded full */
}

.about-title {
    color: #63120a;
    font-weight: 700; /* Bold */
    font-size: 2.25rem; /* Similar to text-4xl */
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem; /* Similar to lg:text-5xl */
    }
}

.about-text {
    opacity: 0.6 !important;
    width: 100%;
}

.progress-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .progress-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.progress-item {
    display: flex;
    align-items: center;
}

.progress-circle {
    position: relative;
    width: 96px; /* Similar to w-24 */
    height: 96px; /* Similar to h-24 */
}

.progress-svg {
    width: 100%;
    height: 100%;
}

.progress-bg {
    fill: none;
    stroke-width: 6;
    stroke: #e5e5e5;
}

.progress-bar {
    fill: none;
    stroke-width: 6;
    stroke: #FF6F61;
}

.progress-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; /* Similar to text-lg */
    font-weight: 700; /* Bold */
    color: #9f7aea; /* Purple-500 */
}

.progress-label {
    margin-top: 0.75rem;
    margin-left: 1.25rem;
    color: #000000;
    font-weight: 500; /* Medium */
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem; /* Similar to gap-4 */
}

.explore-btn {
    background:  maroon;
    color: white;
    font-size: 1rem; /* Similar to text-lg */
    border-radius: 9999px; /* Rounded full */
    padding: 0.5rem 1.5rem; /* Similar to px-6 py-2 */
    border: none;
    cursor: pointer;
}

.explore-btn:hover{
    background: linear-gradient(to right, #ff5243, #c93702);
}

.action-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem; /* Similar to w-10 */
    height: 2.5rem; /* Similar to h-10 */
    border-radius: 9999px; /* Rounded full */
    padding: 0.25rem;
    background: #63120a;
    cursor: pointer;
}

.action-icon:hover{
    background: linear-gradient(to right, #ff5243, #c93702);
}

.action-icon img {
    width: 40px;
    height: 40px;
}


/* Services */

.custom-seo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.custom-seo-tag {
    background: rgba(128, 0, 0, 0.1);
    color: maroon;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    border-radius: 9999px;
    width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.custom-seo-btn {
    background:  maroon;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    border: none; /* Ensures no border */
    position: relative;
    top: 10px;
    transition: all 0.3s;
}

@media (max-width: 640px) {
    .custom-seo-btn{
        display: none;
    }
}

.custom-seo-btn:hover {
    filter: brightness(0.9);
}

.custom-seo-title {
    font-size: 2rem;
    font-weight: 500;
    width: 100%;
    color: #63120a;
    
}

@media (min-width: 640px) {
    .custom-seo-title {
        font-size: 3rem;
    }
}

@media (min-width: 640px) {
    .custom-seo-btn-mobile{
        visibility: hidden;
    }
}

/* Services */

/* General Container Styles */
.custom-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 100px;
    max-width: 1200px;
    padding: 30px 0;
}

/* Card Styles */
.custom-card1 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgb(128 0 0 / 99%);
    color: white;
    cursor: pointer;
    box-shadow: 0 20px 30px rgba(38, 57, 77, 0.1);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Card Hover Effect */
.custom-card1:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease, background 0.3s ease;
    background: rgb(157 0 0 / 95%);
}

/* Card Header */
.custom-card-header {
    display: flex;
    justify-content: center;
}

/* Card Icon */
.custom-card-icon {
    width: 60px;
    height: 60px;
    background: #a33b3b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Icon Image */
.custom-card-icon img {
    width: 40px;
    height: 40px;
}

/* Card Heading */
.custom-card-heading {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Card Description */
.custom-card-description {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

/* Card Footer */
.custom-card-footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Button */
.custom-card-btn {
    background: linear-gradient(to right, #FF6F61, #FF4500); /* Gradient button */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -30px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(58, 52, 52, 0.1);
    transition: transform 0.3s ease;
}

.custom-card-btn:hover {
    transform: scale(1.1); /* Button hover effect */
}

.custom-card-btn img {
    width: 40px;
    height: 40px;
}

/* Button Container Styles */
.btn-container-services {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

/* Button Styles */
.pricing-button {
    background-color: #f1f5f9;
    color: #333;
    border: 2px solid maroon;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: maroon;
    color: white;
}
.pricing-button.active {
    border: 2px solid rgb(226, 61, 10);
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.5); /* maroon border glow */
}
/* Card Update Animation */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-card {
    animation: cardFadeIn 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .custom-card-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .custom-card-container {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
        padding: 0 3%;
    }

    .custom-card1 {
        padding: 1rem;
    }

    .custom-card-heading {
        font-size: 1.125rem; /* Slightly smaller font size */
    }

    .custom-card-description {
        font-size: 0.875rem; /* Smaller text for better readability */
    }

    .custom-card-btn {
        width: 36px;
        height: 36px;
        bottom: -30px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .custom-card-heading {
        font-size: 1rem; /* Adjust title font size for smaller screens */
    }

    .custom-card-description {
        font-size: 0.75rem; /* Further adjust description font size */
    }

    .custom-card-btn {
        width: 32px;
        height: 32px;
        bottom: -30px; /* Further adjust for smaller screens */
    }

    .custom-card-btn img {
        width: 16px;
        height: 16px;
    }

    .btn-container-services {
        flex-direction: column;
        gap: 10px;
    }
}

/* <!-- Work Process --> */

.custom-section {
    text-align: center;
    max-width: 1200px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; 
    padding: 0 30px;
}

.custom-section .custom-tag1 {
    color: maroon;
    background: rgba(128, 0, 0, 0.1); /* Transparent maroon */
    font-weight: 600; /* Equivalent to font-semibold */
    width: 120px;
    padding: 4px 12px;
    border-radius: 9999px; /* Equivalent to rounded-full */
    display: flex;
    
    justify-content: center;
    align-items: center;
}

#tag {
    width: 140px;
}

.custom-section h2 {
    font-size: 2.25rem; /* Equivalent to text-3xl */
    font-weight: 700; /* Equivalent to font-bold */
    margin-top: 0.5rem; /* Equivalent to mt-2 */
    color: black
}

@media (min-width: 768px) {
    .custom-section h2 {
        font-size: 2.5rem; /* Equivalent to md:text-4xl */
    }
}

.custom-container2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
}

.custom-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.custom-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 40px;
    background-color: #f1f5f9; /* Light gray */
    box-shadow: rgba(38, 57, 77, 0.3) 0px 20px 30px -10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.custom-card .custom-icon {
    width: 80px;
    height: 80px;
    background-color: maroon; /* Teal */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-icon {
    flex-shrink: 0;
}

.custom-card:hover {
    background: maroon;
    color: white;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hovered{
    background: maroon;
    color: white;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.hovered
.custom-icon{
    background-color: #a33b3b;
}

.custom-card:hover .custom-icon {
    background-color: #a33b3b;
}

.custom-img {
    width: 40px;
    height: 40px;
}

.custom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    text-align: start;
}

.custom-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.custom-right {
    width: 100%;
}

.custom-img-full {
    width: 100%;
    border-radius: 10px;
   
   
   
}

@media (min-width: 1024px) {
    .custom-container2 {
        flex-direction: row;
    }

    .custom-left {
        width: 50%;
    }

    .custom-right {
        width: 50%;
    }

    .custom-img-full {
        height: 650px;
    }

    .custom-card {
        padding: 40px;
    }

    .custom-icon {
        width: 80px;
        height: 80px;
    }

    .custom-img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1023px) {
    .custom-container2 {
        flex-direction: column;
    }

    .custom-card {
        flex-direction: column;
    }

    .custom-left {
        width: 100%;
    }

    .custom-right {
        width: 100%;
        .custom-img-full {
            width: 50%;
           
        }
    }
}

@media (max-width: 640px) {
    .custom-container2 {
        padding-left: 10px;
        padding-right: 10px;
        .custom-img-full {
            width: 100%;
           
        }
    }
}

/* <!-- Team Member --> */

.team-container-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px; /* Similar to gap-2 */
}

.team-tag {
    color: maroon;
    background: rgba(128, 0, 0, 0.1); /* Transparent maroon */
    display: flex;
    gap: 8px; /* Similar to gap-2 */
    font-weight: 600; /* Semi-bold */
    width: 105px;
    padding: 0.25rem 0.75rem; /* Similar to px-3 py-1 */
    border-radius: 9999px; /* Rounded full */
}

.team-heading {
    font-size: 2.25rem; /* Similar to text-4xl */
    font-weight: 700; /* Bold */
    margin-top: 0.5rem; /* Similar to mt-2 */
    padding: 0 30px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusts columns dynamically */
    gap: 75px;
    padding: 30px; /* Adds padding on small screens to prevent overflow */
}

@media (min-width:1200px) {
    .team-container{
    max-width: 1200px;
    margin: 0 auto; /* Keeps it centered */
    }
}

.team-card {
    display: flex;
    flex-direction: column;
    background-color: #e5e7eb;
    border-radius: 8px;
    height: 440px;
    align-items: center;
    width: 340px;
}


.team-image{
     width: 340px; 
     height: 300px;
}


.team-name {
    margin: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: maroon;
    text-align: center;
    
}


.team-role {
    font-size: 1rem;
    opacity: 0.6;
    margin-top: -8px;
    text-align: start;
}

/* Shine Animation */
/* Wrapper for Shine Effect */
.team-card-wrapper {
    position: relative;
    display: inline-block; /* Ensures the card fits nicely inside */
}

/* Fixing card alignments at breakpoints */
@media (max-width: 996px) {
    #card-3 {
        margin-top: 50px; /* Adjusted for smoother alignment */
    }
}

@media (max-width: 664px) {
    #card-2 {
        margin-top: 50px; /* Adjusted for mid-sized screens */
    }
}

@media (max-width: 640px) {
    .team-container {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    .team-card {
        margin-top: 0; /* Reset margins for cleaner stacking */
        min-width: 100px;
    }
}
@media (max-width:400px) {
    img.team-image {
        width: 100%;
    }
}



/* <!-- Pricing --> */

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 1.25rem;
    text-align: center;
}

.pricing-badge {
    color: maroon;
    background: rgba(128, 0, 0, 0.1); /* Transparent maroon */
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    width: max-content;
}

.pricing-title-upper {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .pricing-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-header {
        padding-left: 10%;
        padding-right: 10%;
    }

    .pricing-title {
        font-size: 2.5rem;
    }
}

.pricing-grid {
    display: grid;
    gap: 20px;
    padding: 30px;
}

@media (min-width: 1200px) {
    .pricing-grid {
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (min-width: 360px) {
    .pricing-grid{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    cursor: pointer;
    padding: 20px;
    border-radius: 30px 0 0 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    flex-grow: 1; /* Ensures that cards grow to fill space */
    min-width: 250px; /* Adjust as per your design */
}

@media (max-width: 640px) {
    .pricing-card {
        min-width: 100px;
    }
}

.pricing-card:hover {
    border-radius: 0 30px 30px 0;
    transform: translateY(-5px);
    background: #fff;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: maroon;
}

.pricing-description {
    margin: 10px 0;
    color: #666;
    font-size: 0.9rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    fill: #e74c3c;
}

.feature-text {
    font-size: 0.95rem;
    color: #444;
}

.pricing-footer {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 20px;
}

.pricing-cost {
    font-size: 2.5rem;
    font-weight: bold;
    color: maroon;
}

.pricing-period {
    font-size: 1rem;
    color: #666;
}

.pricing-button {
    margin-top: 20px;
    background: linear-gradient(to right, #ff6f61, #ff4500);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.pricing-button:hover {
    background: #e04c41;
}


/* Container for the testimonials section */
.custom-testimonials-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2.5rem;
    gap: 0.5rem;
    padding: 30px;
}

/* Label at the top */
.custom-testimonials-label {
    color: maroon;
    background: rgba(128, 0, 0, 0.1); /* Transparent maroon */
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
    width: 140px;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* Fully rounded corners */
}

/* Content container */
.custom-testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .custom-testimonials-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Heading styles */
.custom-testimonials-heading {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 0.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .custom-testimonials-heading {
        font-size: 3rem;
        width: 50%;
    }
}

/* Description styles */
.custom-testimonials-description {
    color: #4b5563;
    width: 100%;
    
}

@media (min-width: 1024px) {
    .custom-testimonials-description {
        width: 50%;
        margin-top: 100px;
    }
}

/* Customer review */

/* Container for carousel */
.custom-carousel-container {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
    padding: 30px;
}

@media (min-width: 1200px) {
    .custom-carousel-container{
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Carousel buttons */
.custom-carousel-btn {
    background: maroon;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}


.custom-carousel-btn:hover {
    background: rgba(128, 0, 0, 0.808)
}

.custom-carousel-prev {
    margin-left: -10px;
}

.custom-carousel-next {
    margin-right: -10px;
}

.customer-icon{
    height: 20px;
    width: 20px;
}

.btn-container{
    display: flex;
    gap: 10px;
    padding-left: 5px;
}

.custom-carousel-btn-min{
    background: maroon;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-carousel-btn-min:hover{
    background: rgba(100, 1, 1, 0.938)
}

@media (max-width: 640px) {
    .custom-carousel-btn{
        display: none;
    }
    
}
@media (min-width: 640px) {
    .custom-carousel-btn-min{
        display: none;
    }
    
}

/* Wrapper for carousel track */
.custom-carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

/* Carousel track */
.custom-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
}

/* Cards */
.custom-carousel-card {
    background-color: #f9efef;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .custom-carousel-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

/* Card Header */
.custom-card-header-review {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

/* Rating */
.custom-rating {
    display: flex;
    gap: 4px;
}

.custom-star {
    color: #f59e0b;
    font-size: 1.125rem;
}

/* Quote */
.custom-quote {
    color: #872222d6;
    font-size: 1.875rem;
    font-weight: bold;
}

/* Profile */
.custom-card-profile {
    display: flex;
    gap: 16px;
}

.custom-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User Info */
.custom-user-name {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1f2937;
}

.custom-user-role {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Card Text */
.custom-card-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}


/* Blog */

/* Blog Container */
.custom-blog-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0 10%;
    align-items: center;
    gap: 8px;
}

/* Blog Badge */
.custom-blog-badge {
    color: maroon;
    background: rgba(128, 0, 0, 0.1); /* Transparent maroon */
    display: flex;
    gap: 8px;
    font-weight: 600;
    width: 105px;
    padding: 4px 12px;
    border-radius: 9999px; /* Fully rounded */
}

/* Blog Heading */
.custom-blog-heading {
    font-size: 2.25rem; /* Equivalent to text-4xl */
    font-weight: 700; /* Bold */
    margin-top: 8px;
}

/* Card Layout */
.custom-card-layout {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 0 10%;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .custom-card-layout {
        flex-direction: row;
    }
}

/* Card Group */
.custom-cards-group {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

/* Image Section */
.custom-card-image {
    overflow: hidden;
    height: 200px;
}

.custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.custom-card-content {
    padding: 24px;
}

/* Author & Date */
.custom-card-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
    color: #6b7280; /* Gray-500 */
    font-size: 14px;
}

.custom-author,
.custom-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-icon {
    height: 20px;
    width: 20px;
}

/* Title */
.custom-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937; /* Gray-800 */
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Button */
.custom-card-button {
    display: inline-flex;
    align-items: center;
    background-color: #ef4444; /* Red-500 */
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-card-button:hover {
    background-color: #dc2626; /* Red-600 */
}

.custom-button-icon {
    height: 16px;
    width: 16px;
    margin-left: 8px;
}

/* Base Layout */
.responsive-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(30.333% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

/* Card Image */
.card-image-container {
    overflow: hidden;
}

.card-image {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

/* Card Body */
.card-body {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.meta-icon {
    height: 20px;
    width: 20px;
}

/* Card Title */
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

/* Card Button */
.card-button {
    display: inline-flex;
    align-items: center;
    background-color: #ef4444;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #dc2626;
}

.button-icon {
    margin-left: 8px;
    height: 16px;
    width: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Gradient Section */
.gradient-section {
    /* background: linear-gradient(to right, #0a74da, #0fbfcf); */
    background-image: url("/images/Footer\ Upper.png");
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 10px;
}

/* Section Heading */
.section-heading {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    width: 75%;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 40px;
    }
}

/* Input Container */
.input-container {
    display: flex;
    align-items: center;
    width: 75%;
    max-width: 1000px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    overflow: hidden;
}

/* Input Field */
.input-field {
    color: #4b5563;
    font-size: 14px;
    flex-grow: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
}

/* Analyze Button */
.analyze-button {
    background: linear-gradient(to right, #f97316, #dc2626);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    /* padding: 16px 24px; */
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
}

.analyze-button:hover {
    background: linear-gradient(to right, #e05c0d, #b91c1c);
}

/* Button Text */
.button-text-desktop {
    display: none;
}

.button-text-mobile {
    display: block;
}

@media (min-width: 640px) {
    .button-text-desktop {
        display: block;
    }

    .button-text-mobile {
        display: none;
    }
}

/* Button Icon */
.button-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .section-heading{
        width: 100%;
    }
    .input-container{
        width: 100%;
    }
}



/* Footer */

/* Footer Container */
.footer-container {
    width: 100%;
    background-color:maroon;
    color: white;
    display: flex;
    gap: 40px;
    padding: 40px 10%;
    flex-wrap: wrap;
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 30%;
}

/* Footer Logo and Description */
.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-description {
    line-height: 1.5;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Quick Links */
.footer-heading {
    font-size: 20px;
    font-weight: bold;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.link-item:hover {
    opacity: 1;
}

.link-icon {
    width: 16px;
    height: 16px;
}

.link-text {
    text-decoration: none;
    color: inherit;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 22px;
    height: 22px;
}

.contact-text {
    text-decoration: none;
    color: inherit;
}

.contact-input {
    width: 200px;
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    color: #000000;
}

/* Privacy Checkbox */
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-policy {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}

/* Contact us */

.Contact-container{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
    margin-top: -100px;
}

.contact-wrapper{
    background: #ffffff;
    width: 100%;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    gap: 20px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.form-container{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 20px;
    padding: 30px;
    gap: 25px;
    width: 50%;
}

.form-title {
    font-weight: 600;
}

.form-info-boxes{
    width: 100%;
    display: flex;
    gap: 20px;
}

.form-input{
    outline: none;
    border: none;
    width: 100%;
    border-radius: 8px;
    border: 1px solid gray;
    padding: 20px 20px;
    line-height: 1;
    color: var(--text);
}

.form-text-area{
    resize: none;
    
}

.form-info{
    display: flex;
    align-items: start;
    gap: 10px;
    opacity: 0.7;
}

.form-btn{
    border: none;
    text-transform: capitalize;
    text-align: center;
    background-color: maroon;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 19.5px 35px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.map{
    width: 50%;
}

@media (max-width:1024px) {
    .contact-wrapper{
        flex-direction: column;
    }

    .map{
        width: 100%;
        height: 500px;
    }
    
    .form-container{
        width: 100%;
    }
}

@media (max-width:640px){

    .form-info-boxes{
        flex-direction: column;
    }

    .Contact-container{
        padding: 0 10px;
    }
    .contact-wrapper{
        padding: 30px;
    }
    .form-container{
        padding: 20px;
    }
}

/* Case Studies */

.Case-studies-tag{
    color: maroon;
    background: rgba(128, 0, 0, 0.1); /* Transparent maroon */
    display: flex;
    gap: 8px; /* Similar to gap-2 */
    font-weight: 600; /* Semi-bold */
    width: 169px;
    padding: 0.25rem 0.75rem; /* Similar to px-3 py-1 */
    border-radius: 9999px; /* Rounded full */
}

/* Grid Container */
/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 15px; /* Spacing */
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Default Card Sizes */
.card-case-studies {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex; /* Flexbox to align content */
    flex-direction: column; /* Arrange items vertically */
    justify-content: space-between; /* Space between image and title */
}

.card-case-studies img {
    width: 100%;
    height: auto; /* Ensures image retains aspect ratio */
    flex: 1; /* Makes the image fill available space */
    object-fit: cover; /* Ensures the image covers properly */
}

.card-title-case-studies {
    padding: 10px;
    font-weight: bold;
    text-align: center;
    background-color: #fff; /* Matches card design */
    flex-shrink: 0; /* Prevents title from shrinking */
}

/* Grid Layout Adjustments */
.card-case-studies:nth-child(1) { /* Web Design */
    grid-column: span 2; /* Takes 2 columns */
    grid-row: span 1;
}

.card-case-studies:nth-child(2) { /* Social Media Posts */
    grid-column: span 1; /* Single column */
    grid-row: span 1;
}

.card-case-studies:nth-child(3) { /* Marketing Campaign */
    grid-column: span 1; /* Align next to Web Design */
    grid-row: span 1;
}

.card-case-studies:nth-child(4),
.card-case-studies:nth-child(5) { /* Brand Design */
    grid-column: span 1;
    grid-row: span 1;
}

.card-case-studies:nth-child(6) { /* Packaging Design */
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns layout */
    }

    .card-case-studies:nth-child(1),
    .card-case-studies:nth-child(2) {
        grid-column: span 2; /* Full width */
    }
}

@media (max-width: 640px) {
    .grid-container {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .card-case-studies {
        grid-column: span 1; /* Full width for all cards */
    }
}

.custom-step-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/maroon-background.jpg");
}

.custom-step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.custom-step-container::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.custom-step-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 50;
}

.custom-step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.custom-bg-orange {
    background: #c91717;
}

.custom-bg-blue {
    background: linear-gradient(to bottom, #ff7b00, #ff0000);
}

.custom-icon {
    width: 30px;
    height: 30px;
}

.custom-step-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.custom-step-text {
    font-size: 14px;
    padding: 0 50px;
    text-align: center;
    color: white;
    opacity: 0.8;
}

.custom-step-badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    color: white;
}

.custom-badge-blue {
    background: #c91717;
}

.custom-badge-orange {
    background: linear-gradient(to bottom, #ff7b00, #ff0000);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-step-container {
        flex-direction: column;
        gap: 30px;
    }
    .custom-step-container::before {
        display: none;
    }
}


body {
    overflow-x: hidden;
}

        
        
        
        
        /* footer-Banner styles */
        .footer-banner {
            background-image: url("/images/Footer\ Upper.png");
            
            padding: 20px;
            border-radius: 15px;
            margin-left: 80px;
            width: 90%;
            height: 250px;
            position: relative;
            top: 90px;
            z-index: 2;
        }
        
        .footer-banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            
            
        }
        
        .footer-banner-image {
            flex: 0 0 30%;
            
        }
        
        .footer-banner img{
            position: relative;
            bottom: 160px;
            left: -80px;
            height: 350px;
        
        }
        
        .person-image {
            width: 100%;
            max-width: 200px;
            display: block;
        }
        
        .footer-banner-text {
            flex: 1 0 65%;
            color: white;
            margin-bottom: 170px;
            
        }
        
      




        .specialist-btn {
            background-color: white;
            color: #333;
            border: none;
            padding: 5px 20px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
        
            align-items: center;
           
           
            
        }
        
        .specialist-btn i {
            background-color: white;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
           
            align-items: center;
            justify-content: center;
            font-size: 12px;
           
        }
        
        /* Footer styles */
        footer {
            background-color: maroon;
            color: white;
            padding: 150px 0 0;
            position: relative;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .company-info, .quick-links, .recent-posts, .contact-us {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        /* Company info */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .logo-icon {
            background-color: white;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        
        
        
        
        .company-desc {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            background-color: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: maroon;
        }
        
        /* Quick links */
        .quick-links h3, .recent-posts h3, .contact-us h3 {
            position: relative;
            margin-bottom: 25px;
            padding-bottom: 10px;
        }
        
        .quick-links h3::after, .recent-posts h3::after, .contact-us h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: white;
        }
        
        .quick-links ul {
            list-style: none;
        }
        
        .quick-links li {
            margin-bottom: 15px;
        }
        
        .quick-links a {
            color: #ccc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s;
        }
        
        .quick-links a:hover {
            color: white;
        }
        
        .quick-links i {
            color: white;
        }
        
        
        
        /* Contact us */
        .contact-info {
            margin-bottom: 20px;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: #ccc;
        }
        
        .contact-info i {
            color: white;
        }
        
        .newsletter {
            display: flex;
            margin-bottom: 15px;
        }
        
        .newsletter input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .submit-btn {
            background-color: white;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 0 15px;
            cursor: pointer;
        }
        
        .privacy-check {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ccc;
            font-size: 14px;
        }
        
        .privacy-check a {
            color: white;
            text-decoration: none;
        }
        
        /* Bottom bar */
        .bottom-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .bottom-links {
            display: flex;
            gap: 20px;
        }
        
        .bottom-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .bottom-links a:hover {
            color: white;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            right: 20px;
            bottom: 80px;
            width: 40px;
            height: 40px;
            background-color: maroon;
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        .back-to-up {
            position: absolute;
            bottom: 40px;
            width: 40px;
            height: 40px;
            background-color: maroon;
            color: white;
            border: 1px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        
        
        
        /* Decorative circles */
        
        /* Responsive styles */
        @media screen and (max-width: 991px) {
            .footer-banner {
                margin-left: 30px;
                width: 90%;
                height: auto;
                padding: 15px;
                top: 60px;
            }
        
            .footer-banner-content {
                flex-direction: column-reverse;
                text-align: center;
            }
        
            .footer-banner-image {
                margin-bottom: 20px;
            }
        
            .footer-banner img {
               display: none;
            }
        
            .footer-banner-text {
                margin-bottom: 30px;
            }
        
            .footer-banner-text h2 {
                font-size: 24px;
            }
        
            .specialist-btn {
                position: static;
                margin: 20px auto 0;
            }
        }
        
        
        @media (max-width: 768px) {
            
            
            .footer-banner {
                display: none;
            }
            .company-info, .quick-links, .recent-posts, .contact-us {
                flex: 0 0 100%;
            }
            
            .bottom-bar {
                flex-direction: column;
                text-align: center;
            }
            
            .bottom-links {
                justify-content: center;
            }
        }
        