*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service-banner img {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}



.content-container {
    margin-top: -20px;
}

.feature-container {
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f7ff; /* Light blue shade */
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: maroon; /* Dark blue shade */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-box p {
    margin: 0;
    font-size: 14px;
    color: #333; /* Text color */
}

@media (max-width: 1024px) {
    .feature-container {
        width: 80%;
    }
}

.value-title {
    margin: 0 auto;
    font-size: 40px;
}

/* Progress card */
.progress-card {
    /* Light purple/blue background */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensures responsiveness */
}

.progress-items {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.progress-bar {
    /* Gray background for the bar */
    border-radius: 8px;
    height: 8px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    background-color: maroon; /* Orange fill */
    height: 100%;
    border-radius: 8px;
    transition: width 0.3s ease;
}

/* Counter section */
.counter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #933636;
    color: white;
    padding: 20px;
    margin-bottom: 100px;
}

.counter-content {
    display: flex;
    flex-direction: row;
    padding-top: 30px;
    margin-bottom: -50px;
    text-align: left;
}

.counter-heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.counter-badge {
    color: white;
    background: rgb(255 255 255 / 10%);
    width: 100px;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.counter-content h1 {
    font-size: 2.5rem;
    width: 70%;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 500;
}

.stat p {
    font-size: 1rem;
    font-style: italic;
}

.counter-video {
    position: relative;
    top: 100px;
}

.counter-video video {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .counter-content {
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .stats {
        flex-direction: column;
    }
    .counter-heading h1 {
        font-size: 1.5rem;
        width: 100%;
    }
}

/* Skills section */
.skills-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #5b2323;
    position: relative;
    overflow: hidden;
    color: white;
}

.skills-badge {
    color: white;
    margin: 0 auto;
    background: rgb(255 255 255 / 10%);
    width: 160px;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.skills-section::before,
.skills-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    z-index: 0;
}

.skills-section::before {
    top: -50px;
    left: -50px;
}

.skills-section::after {
    bottom: -50px;
    right: -50px;
}

.skills-header {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.skills-header span {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.skills-header h2 {
    font-size: 2rem;
    font-weight: bold;
}

.skills-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.skill-item {
    text-align: center;
    width: 150px;
}

.skill-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.skill-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}
   
      /* Services Section */
      .seo-services {
          padding: 80px 0 0;
          position: relative;
          overflow: hidden;
         

      }
      
      .service-label {
          margin-bottom: 20px;
      }
      
      .service-label span {
          color: maroon;
          font-weight: 600;
          font-size: 14px;
          
          letter-spacing: 1px;
          display: inline-block;
      }
      
      .service-label i {
          margin-right: 5px;
      }
      
      .main-heading {
          color: white;
          font-size: 42px;
          font-weight: 700;
          margin-bottom: 60px;
          line-height: 1.2;
      }
      
      .services-row {
          justify-content: center;
          margin-bottom: 50px;
      }
      
      /* Service Cards */
      .service-card {
          background-color: maroon;
          border-radius: 10px;
          padding: 24px;
          margin-left: 2%;
          margin-right: 2%;
          display: flex;
          flex-direction: column;
          transition: transform 0.3s ease;
          
      }
      
      .service-card:hover {
          transform: translateY(-10px);
      }
      
      .card-header {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          
      }
      
      .icon-container {
          width: 50px;
          height: 50px;
          border: 1px solid white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      
      .icon-container i {
          color: white;
          font-size: 20px;
      }
      
      .service-number {
          color: white;
          font-weight: bold;
          font-size: 16px;
      }
      
      .service-title {
          font-size: 22px;
          font-weight: 600;
          margin-bottom: 15px;
          color: white
      }
      
      .service-description {
          font-size: 14px;
          color: #cccccc;
          margin-top: auto;
          line-height: 1.5;
      }
      
      /* Rocket Section */
      .rocket-section {
          position: relative;
          height: 300px;
          margin-top: 0px;
      }
      
      .card1{
        margin-top: 150px;
      
      }
      
      .card2{
        margin-top: 75px;
      }
      
     
     

      .rocket-container {
          position: absolute;
          bottom: 200px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 2;
      }
      
      .rocket-image {
    width: 180px;
    height: auto;
    margin-top: 800px;
    animation: floatUpDown 3s ease-in-out infinite; /* Smooth up & down motion */
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0); /* Start and End at the same position */
    }
    50% {
        transform: translateY(-30px); /* Moves up by 30px */
    }
}

      .cloud-shape {
          position: absolute;
          bottom: 0px;
          height: 80px;
          background-color: white;
          border-radius: 50% 50% 0 0;
      }
      
      .cloud-shape.left {
          left: 0;
          width: 40%;
      }
      
      .cloud-shape.right {
          right: 0;
          width: 40%;
      }
      
      /* Responsive Adjustments */
      @media (max-width: 992px) {
          .main-heading {
              font-size: 36px;
          }
          
          .services-row {
              margin-bottom: 30px;
          }
          .card1{
        margin-top: 0px;
      
      }

      .rocket-section {
              height: 250px;
              display: none;
          }
      .card2{
        margin-top: 0px;
      }
      }
      
      @media (max-width: 768px) {
          .main-heading {
              font-size: 30px;
              margin-bottom: 40px;
          }
          
          .rocket-section {
              height: 250px;
              display: none;
          }
          
          .curved-line {
              width: 90%;
          }
          .card1{
        margin-top: 0px;
      
      }
      
      .card2{
        margin-top: 0px;
      }
      }
      
      @media (max-width: 576px) {
          .seo-services {
              padding: 50px 0 0;
          }
          
          .main-heading {
              font-size: 26px;
          }
          
          .service-card {
              margin-bottom: 20px;
          }
          .card1{
        margin-top: 0px;
      
      }
      .rocket-section {
              height: 250px;
              display: none;
          }
      
      .card2{
        margin-top: 0px;
      }
      }

    


/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 400px;
    
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid #e2e8f0;
}

.placeholder-icon i {
    font-size: 24px;
    color: #94a3b8;
}

.placeholder-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.line {
    position: absolute;
    background-color: #e2e8f0;
}

.horizontal {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.vertical {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
}

.diagonal-1 {
    width: 1px;
    height: 141%;
    top: -20%;
    left: 50%;
    transform: rotate(45deg);
}

.diagonal-2 {
    width: 1px;
    height: 141%;
    top: -20%;
    left: 50%;
    transform: rotate(-45deg);
}

/* Stats Box */
.stats-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: maroon;
    color: white;
    padding: 20px;
    text-align: center;
}

.stats-number {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Content Section */
.content-section {
    padding: 20px;
    margin-bottom: 20px;
}

/* Services List */
.services-list {
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-icon {
    margin-right: 10px;
    color: maroon;
    font-size: 12px;
}

.service-text {
    font-size: 16px;
    color: #334155;
}

/* Learn More Button */
.learn-more-btn {
    background-color: maroon;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-more-btn:hover {
    background-color: rgb(85, 15, 15);
}

.learn-more-btn i {
    margin-left: 8px;
}

/* Live Chat Button */
.live-chat-btn {
   
   
    
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px 10px;
   
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    
    width: 120px
}

.live-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.chat-icon {
    width: 36px;
    height: 36px;
    background-color: maroon;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.chat-icon i {
    color: white;
    font-size: 16px;
}

.chat-text {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .image-placeholder {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .stats-box {
        position: relative;
        margin-top: -20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 24px;
    }
    
    .live-chat-btn {
        padding: 8px 16px;
    }
    
    .chat-icon {
        width: 32px;
        height: 32px;
    }
    
    .chat-text {
        font-size: 14px;
    }
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-text {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
}

/* Custom Section */
.custom-container {
    display: flex; /* Aligns elements in a row */
    justify-content: space-between; /* Pushes items to left & right */
    align-items: center; /* Centers vertically */
    gap: 50px; /* Adjust spacing between left & right sections */
}

.custom-section {
    flex: 1; /* Makes left section flexible */
}

.services-list {
    flex: 1.5; /* Makes right section larger */
}


.custom-heading {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 15px;
}

.success-text {
    font-size: 14px;
    color: #64748b;
}



.services-section {
    
   
    min-height: 100vh;
    display: flex;
    align-items: center;
}


/* Left Column */
.left-column {
    flex: 1;
    min-width: 300px;
    max-height: 80vh;
    overflow-y: auto;
  ;
    /* Styling the scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 #f7f7f7;
}

.left-column::-webkit-scrollbar {
    width: 6px;
}

.left-column::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.left-column::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 6px;
}

.content-wrapper {
    padding: 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    
}

h2 span {
    display: block;
    color: maroon;
}

.left-column p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}




/* Right Column */
.right-column {
    flex: 1;
    min-width: 300px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 2px solid maroon;
    z-index: 2;
    color: maroon;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
}

.timeline-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
}

.timeline-connector {
    position: absolute;
    left: 25px;
    width: 2px;
    height: 30px;
    background-color: maroon;
    margin-left: -1px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    
    .left-column, .right-column {
        width: 100%;
    }
    
    .left-column {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}
body {
    overflow-x: hidden;
}
