* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: #fff;
  }
 
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    background-color: black;
    padding: 20px;
    position: relative;
    width: 1333px;
    left: 0px;
    transition: 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 20px;
    margin-bottom: 0px;
    padding: 26px 50px 18px 50px;
  }
  
  .navbar li {
    margin-right: 20px;
    position: relative;
  }
  
  .navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    color: #000;
    background-color: #fff;
    top: 100%;
    left: 0;
    width: 600px;
    padding: 10px;
  }
  
  .dropdown-menu .column {
    margin-bottom: 10px;
  }
  
  .dropdown-menu a {
    color: #000;
    display: block;
    padding: 5px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dropdown-menu a:hover {
    color: #ffaa17;
  }
  
  .navbar + .btn-book {
    position: absolute;
    right: 50px;
    top: 30px;
    background-color: #ffaa17;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 5px;
    line-height: 30px;
    letter-spacing: 0.2px;
    padding: 12px 36px 12px 36px;
  }
  
  .navbar + .btn-book:hover {
    background-color: #ffaa17;
  }
  
  /* section 1*/
  
  .hero {
    margin-top: -250px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    background-color: black;
    text-align: center;
    position: flex;
  }
  
  .hero h1 {
    /*
    font-size: 2.5em;
    margin-bottom: 20px;
    max-width: 600px;
     */
  margin-left:70px ;
  margin-right: 70px;
    z-index: 9;
    font-family: Poppins;
    height: auto;
    color: rgb(255, 255, 255);
    white-space: normal;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: center;
    line-height: 60px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 40px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
  }
  
  .cta-buttons {
    line-height: 30px;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .btns {
    background-color: #ffaa17;
  
    color: #fff;
  
    font-weight: bold;
    z-index: 19;
    cursor: pointer;
    font-family: poppins;
    white-space: normal;
    width: 185px;
    height: 55px;
    text-align: center;
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 36px;
    border-radius: 4px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
  }
  
  .btns:hover {
    background-color: #ffaa17;
  }
  .images {
    position: center;
    flex: 1;
    display: flex;
    align-items: flex;
    justify-content: flex;
  }
  
  .images .chart {
    position: absolute;
    top: 300px;
    left: 110px;
    right:50%;
    width: 100px;
    height:250px;
    border-radius: 5%;
    animation: slideInRight 1s ease-in-out forwards;
  }
  
  .images .dashboard {
    position: absolute;
    top:400px;
    width: 650px;
    bottom: 20px;
    right: 25%;
    animation: slideUp 1.5s ease-in-out forwards;
  }
  
  .images .report {
    position: absolute;
    top:450px;
    bottom: 20px;
    right: 250px;
    width: 140px;
    animation: slideInRight 2s ease-in-out forwards;
  }


  
  /* Keyframes for animations */
  @keyframes slideInRight {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideIncenter {
    from {
      transform: translateX(100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0); 
      opacity: 1;
    }
  }
  
 /* Desktops and larger devices */
 
@media (min-width: 992px) {
  .hero {
      flex-direction: row;
      overflow: hidden;
     
  }
  .hero h1 {
      font-size: 40px;
      margin: 0 70px;
  }
  .images {
      flex: 1;
  }
  .images .chart {
      width: 250px;
  }
  .images .dashboard {
      width: 650px;
  }
  .images .report {
      width: 180px;
  }
}
  

/* Mobile devices */
/*&
@media screen and (max-width: 768px) {
  .desktop-only{
    display: block;
  }
}
  */
  @media (max-width: 768px){
  .hero {
      height: auto;
      margin-top: 0px;
      padding: 20px;
      overflow: hidden;
  }

  .hero h1 {
      font-size: 28px;
      line-height: 40px;
  }

  .cta-buttons {
      flex-direction: column;
      gap: 10px;
  }

  .btns {
      width: 150px;
      height: 45px;
      font-size: 14px;
  }

  .images {
      flex-direction: column;
  }

  .images .chart,
  .images .dashboard,
  .images .report {
      width: 80%;
      max-width: 300px;
      animation: slideUp 1s ease-in-out forwards;
  }
}





  /**Section 2/
  /* Image positioning and animation */
  
  .adding-value {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    flex-direction: column;
  }
  
  .adding-value h1 {
    margin-top: 250px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
    color: black;
  }
  
  .card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .service-card {
    background-color: #fff;
    width: 250px;
    margin: 20px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card h3:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
  }
  .service-card h3 span{
    background-color: #ffaa17;
    color: #fff!important;
    font-size: 1.2rem;
  }
  
  @media (max-width: 768px) {
    .adding-value{
      margin-top:-250px
    }
    .card-container {
      flex-direction: column;
      align-items: center;
    }
  
    .service-card {
      width: 90%;
    }
  }
  /*Section 3*/
  .digital-marketing-strategy {
    padding: 50px;
    background-color: #ffffff;
  }
  
  .content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .image img {
    max-width: 95%;
  }
  
  .text-content {
    max-width: 50%;
  }
  
  .text-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
  }
  
  .text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
  }
  
  .services-list {
    list-style: none;
  }
  
  .services-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .services-list li span {
    color: #ffaa17!important;
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .content-container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content {
      max-width: 100%;
      margin-top: 20px;
    }
  
    .image {
      max-width: 100%;
      
    }
  }

  /*Section 4*/
  /*--digital market strategy*/
  .digital-marketing-strategy {
    padding: 50px;
    background-color: #ffffff;
  }
  
  .content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .image img {
    max-width: 95%;
    height:450px;
  }
  
  .text-content {
    max-width: 50%;
  }
  
  .text-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
  }
  
  .text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
  }
  
  .services-list {
    list-style: none;
  }
  
  .services-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .services-list li span {
    color: #ffaa17!important;
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .content-container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content {
      max-width: 100%;
      margin-top: 20px;
    }
  
    .image img {
      max-width: 100%;
      height: 300px;
    }
  }
  
  /*Section 5*/
  .business-assists {
    background-color: black;
    color: white;
    padding: 50px 0;
    flex-direction: column;
   }
   
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .text-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
  }
  
  .text-content p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 50px;
  }
  
  .stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    
  }
  
  .stat-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .stat-box:hover {
    transform: scale(1.05);
  }
  
  .stat-box h3 {
    font-size: 2rem;
    color: #ffaa17;
  }
  
  .stat-box p {
    font-size: 1rem;
    color: #666;
  }
  
  .stat-icon {
    margin-bottom: 15px;
  }
  
  .stat-icon img {
    max-width: 50px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
    }
  
    .stat-box {
      width: 100%;
      margin-bottom: 20px;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      margin-left: 50px;
    }
    
  }
  
  /*Section  6*/
  .analytics-section {
   margin-top: -450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }
  
  .container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .analytics-left img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .analytics-right {
    max-width: 600px;
    text-align: left;
    padding-left: 40px;
  }
  
  .analytics-right h4 {
    font-size: 1.2em;
    color: #ffaa17;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .analytics-right h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
  }
  
  .analytics-right p {
    font-size: 1em;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .analytics-right p strong {
    font-size: 1.1em;
    color: #fff;
  }
  
  @media (max-width: 786px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
  
    .analytics-right {
      padding-left: 0;
      padding-top: 20px;
    }
  }
  
  .analytics-section {
    opacity: 0;
    transition: opacity 1s ease-out;
  }
  
  .analytics-section.visible {
    opacity: 1;
  }
  

  /*------section 7 rocket-------------------*/

  .agency-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.content-container {
    display: flex;
    margin-top: 50px;
    align-items: flex-start;
}

.services {
    display: flex;
    flex-wrap: wrap;
    max-width: 60%;
   
}

.service-box {
    background-color:black ;
    padding: 30px;
    border-radius: 10px;
    width: 45%;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.service-box:hover {
    cursor: pointer;
}

.service-box h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 1rem;
    color: #b3b3b3;
}

.icon {
    margin-top: 10px;
}

.icon img {
    width: 30px;
    height: 30px;
}

.rocket {
    width: 35%;
    text-align: right;
}

.rocket img {
  margin-top:100px;
    width: 100%;
    max-width: 300px;
}

/* Media query for devices with a max width of 768px (tablet and mobile view) */
@media (max-width: 768px) {
  .content-container {
      flex-direction: column; /* Stack the content vertically */
      align-items: center;
  }

  .services {
      max-width: 100%; /* Allow the services section to take full width */
      justify-content: center;
  }

  .service-box {
      width: 80%; /* Make the service boxes narrower to fit smaller screens */
  }

  .rocket {
      width: 80%; /* Adjust the width for the rocket image */
      text-align: center;
      margin-top: 20px;
  }

  h1 {
      font-size: 2rem; /* Reduce heading size for mobile view */
      text-align: center;
  }
  .agency-section{
    margin-top: -350px;
  }
}

/* Media query for devices with a max width of 480px (small mobile screens) */
@media (max-width: 480px) {
  .service-box {
      width: 100%; /* Full width for very small screens */
      margin: 10px 0; /* Adjust margins for small screens */
  }

  h1 {
      font-size: 1.8rem; /* Further reduce heading size for small mobile screens */
      text-align: center;
  }
}

/*-------seo- section ------------------*/

.seo-section {
    padding: 60px 20px;
    background-color: #fff;
    flex-direction: column;
}

.container-chart {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
}

.image-container {
    flex: 1;
    padding-right: 40px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

.text-container {
    flex: 1;
    padding-left: 40px;
    text-align: left;
}

.highlight-text {
    color:#ffaa17;
    font-weight: bold;
    font-size: 1.1rem;
}

h1 {
    font-size: 2rem;
    margin: 15px 0;
    color: #222;
}

.description {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #666;
}

h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #fff;
}

.details {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    background-color:#ffaa17;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffaa17;
}

@media screen and (max-width: 768px){
  .image-container{
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;

  }
  .image-container img{
    width: 80%;
    max-width: 300px;

  }
  .container-chart{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    overflow: hidden;
  }
  .text-container{
    max-width: 100%;
    margin-bottom: 20px;
  }
}



/*
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .image-container{
      padding: 0;
      margin-top: -1000px;
      flex-direction: column;
      justify-content:center ;
      margin-left: 100px;
    
    }
     .text-container {
        padding: 0;
    }

    .text-container {
        margin-top: 300px;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
        width: 1000px;
    }
}
*/
/*-------------------*/
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
 
}

/* Analyze Section */
.analyze-section {
  background-color: #0a1229;
  padding: 50px 20px;
  color: white;
  text-align: center;
}

.analyze-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
  flex: 1;
  max-width: 60%;
  text-align: left;
  margin-left: 180px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 20px;
  color: #ffaa17;
}

.contact-info i {
  margin-right: 10px;
}




.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-seo,
.btn-optimize {
  background-color: #ffaa17;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 5px;
  cursor: pointer;
}

.card-chart {
  margin-top: 20px;
}

.card-chart h4 {
  color: #000;
}

.card-chart img {
  margin-top: -150px;
  width: 400px;
  margin-right: 200px;
}

/* Subscription Form */
.subscribe-form {
  margin-top: 50px;
}

.subscribe-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.subscribe-form form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-form input[type="email"] {
  padding: 15px;
  width: 300px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 16px;
}

.btn-subscribe {
  background-color: #ffaa17;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-subscribe:hover {
  background-color:#ffaa17;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .analyze-content {
      flex-direction: column;
      text-align: center;
      height: auto;
      width: auto;
      margin-bottom: 100px;
  }

  .contact-info{
    width: auto;
      height: auto;
      margin-bottom: 100px;
      overflow: hidden;
      flex-direction: column;
      justify-content: center;
      text-align: center;
     margin-right: 300px;
     margin-left: -20px;

  }
.report-card {
      /*max-width: 100%;*/
      width: auto;
      height: auto;
      margin-bottom: 100px;
      overflow: hidden;
      flex-direction: column;
  }

  .subscribe-form form {
      flex-direction: column;
  }

  .subscribe-form input[type="email"] {
      width: 100%;
      margin-bottom: 10px;
  }
  .card-chart{
flex-direction: column;
margin-left: -50px;
  }
}
/*--Footer--*/


/* Footer Styles */
.footer {
  background-color:black;
  color: white;
  padding: 40px 20px;
  height:auto;
}

/* Footer Column Styles */
.footer-column {
  width: 22%;
  margin-bottom: 20px;
  height: 350px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
}

.social-links img {
  width: 25px;
  height: 25px;
}

/* Middle Columns */
.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column p, .footer-column a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: #ffaa17;
}

/* Right Column */
.discover-more {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #ffaa17;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.discover-more:hover {
  background-color: #ffaa17;
}

/* Bottom Copyright */
.footer-bottom {
  background-color: black;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  color: white;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.about-us-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background-color: #000; /* Black background */
}    

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      width: auto;
  }

  .footer-column {
      text-align: center;
      overflow: hidden;
      flex-direction: column;
      justify-content: center;
      width: auto;
  }
}

/* About Page*/
/* About Content */
.about-content {
    max-width: 50%;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
}

.about-content h4 {
    font-size: 20px;
    color: #c8aa2b;
    margin-bottom: 15px;
    overflow: hidden;
    flex-direction: column;
}

.about-content h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #fff;
}

.about-content .highlight {
    color: #c8aa2b; /* Gold color */
}

.book-call-btn {
    background-color: #c8aa2b;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.book-call-btn:hover {
    background-color: #e6bf39; /* Lighter gold on hover */
}

/* About Image */
.about-image {
    max-width: 45%;
    text-align: right;
}

.about-image img {
    width: 100%;
    max-width: 400px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-us-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        overflow: hidden;
    }

    .about-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-image {
        max-width: 100%;
        text-align: center;
    }

    .about-image img {
        width: 80%;
        max-width: 300px;
    }
}

/* Digital Marketing Section */
.digital-marketing-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 80px;
  background-color: #fdf7f2; /* Light beige background */
  
}

/* Text Content */
.text-content-digital {
  max-width: 60%;
  margin-left: 200px;
  margin-right: 200px;
}

.text-content-digital h2 {
  font-size: 36px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 20px;
}

.text-content-digital .highlight {
  color: #c8aa2b; /* Gold color */
}

.text-content-digital p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.world-map img {
  width: 100%;
  max-width: 500px;
  
}

/* Stats Box */
.rated-star {
  background-color: #000;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-right: 200px;
  margin-top: -10px!important;

  height: 400px;
  width: 600px;
}

.rated-item h3 {
  font-size: 36px;
  color: #c8aa2b; /* Gold color */
  margin-bottom: 5px;
}

.rated-item p {
  font-size: 16px;
  color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .digital-marketing-section {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
  }

  .text-content {
      max-width: 100%;
      text-align: center;
      margin-bottom: 20px;
  }

  .world-map img {
      width: 80%;
      max-width: 300px;
      margin: 0 auto;
  }

  .rated-star {
      /*max-width: 100%;*/
      /*width: 80%;*/
      width: 80%;
      max-width: 300px;
      margin: 0 auto;
      justify-content: center;
      text-align: center;
      flex-direction: column; 
  }
}


.ratings-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fd;
}

.ratings-header p {
  font-size: 1.2rem;
  color: #ffaa17;
  margin-bottom: 5px;
}

.ratings-header h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 30px;
}

.ratings-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-card {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.rating-card img {
  width: 40px;
  margin-bottom: 15px;
}

.rating-card p {
  font-size: 0.95rem;
  margin: 10px 0;
  color: #000;
}

.learn-more {
  color: #ffaa17;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #ffaa17;
}

.call-to-action-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.call-to-action-section h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
}

.call-to-action-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ffb100;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e69b00;
}

@media (max-width: 768px) {
  .ratings-cards {
      flex-direction: column;
      align-items: center;
  }

  .rating-card {
      width: 80%;
      margin-bottom: 20px;
  }
}
/*lightbulb */
.experts-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 20px;
}

.expert-info {
  max-width: 400px;
  text-align: left;
}

.expert-info h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.expert-info p {
  font-size: 1rem;
  color: #d3d3d3;
  margin-bottom: 20px;
}

.lightbulb-image img {
  width: 250px;
  height: 200px;
  margin-left: 100px;
}

.photo-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-wrapper {
  display: flex;
  width: 600px;
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 10px;
}

.slider-item {
  min-width: 100%;
  transition: transform 0.5s ease;
  position: relative;
  text-align: center;
  background-color: #111;
  padding: 10px;
}

.slider-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 5px;
}

.slider-item p {
  color: #ffffff;
  font-size: 2rem;
  margin-top: 10px;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  width: 600px;
  margin-top: 10px;
}

.slider-controls button {
  background-color: #ffffff;
  color: #333;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.slider-controls button:hover {
  background-color: #ffb100;
  color: #fff;
}

/* Mobile view adjustments */
@media (max-width: 480px) {
  .experts-section {
    padding: 50px;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    height: auto;
    width: auto;
    flex-direction: column;
  }

  .expert-info h2 {
    font-size: 2.4rem;
    padding: 20px 10px;

  }

  .expert-info p {
    font-size: 1rem;
    
  }

  .lightbulb-image img {
    width: 80px;
    height: 120px;
  }

  .slider-wrapper {
    max-width: 100%;
  }

  .slider-item img {
    height: 180px;
  }

  .slider-controls {
    width: 90%;
  }

  .slider-controls button {
    padding: 5px 12px;
    font-size: 0.9rem;
  }
}

/* client section*/
.clientmy {
  display: flex;
  align-items: center;
  justify-content: center; /* Center content for small screens */
  padding: 30px 15px; /* Adjusted padding for smaller screens */
  background-color: #fff;
  color: #000;
  flex-direction: column; /* Stack items vertically on small screens */
}

.clientmy h1{
  text-align: center;
}
.clientmy p {
  margin-left: 150px; 
  margin-right: 150px!important;
  text-align: center;
  flex-direction: column;/* Reduced margins for better spacing on smaller screens */
}

.clientmy p {
  line-height: 1.5em; /* Line height for readability on small screens */
  margin-right: 10px; /* Reduced right margin for mobile view */
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .clientmy {
    padding: 20px 10px; /* Reduce padding for better fit on small screens */
    text-align: center; /* Center align text for readability */
    flex-direction: column;
    justify-content: center;
  }
  .clientmy h1 {
    margin-left: 0; /* Remove left margin to center the heading */
  }

}

/*--------------------------*/
.values-section {
    padding: 50px 20px;
    text-align: center;
}

.values-intro h3 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.values-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.values-intro p {
   
    font-size: 1rem;
    margin: 5px 0;
}

.values-grid {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.value-card {
    background-color: #fff5cc;
    height: 240px;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h4 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 5px;
}

.value-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.value-description {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: left;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.value-card:hover .value-description {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 600px) {
  .values-grid {
      gap: 10px; /* Smaller gap for extra-small screens */
  }

  .value-card {
      width: 95%; /* Utilize more screen width */
  }

  .values-intro h2 {
      font-size: 1.4rem; /* Reduce heading size even more for small screens */
  }

  .values-intro h3 {
      font-size: 0.9rem; /* Smaller font size for the subtitle */
  }

  .values-intro p {
      font-size: 0.8rem; /* Smaller paragraph text */
  }
  .value-description {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 5px;
    opacity: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: left;
    transition: opacity 0.5s ease;
}

 
}

/*---Updated SEO Services Section---*/
.custom-seo-section {
    text-align: left;
    padding: 60px 80px;
    background-color: #fff;
    color: black;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000;
  }
  
  .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: left;
    flex-wrap: wrap;
   
  }
  
  /* Image Section */
  .seomy-imagemy img {
    width: 100%;
    max-width: 200px;
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
    transform: translateY(50px);
  }
  
  /* Details Section */
  .seo-details {
    display: flex;
    flex-direction: column;
  margin-left: -200px;
    max-width: 40%;
    margin-top: 100px;
    gap: 20%;
  }
  .detail-item {
    display:flex;
    align-items: left;
    gap:15px
  }
  
  
  .detail-item img {
    width: 100px;
    height: 100px;
  }
  
  .detail-item h3 {
    width: auto;
    color: #000;

  }
  
  .detail-item p {
    font-size: 16px;
    margin-top: 50px;
    margin-left: -100px;
    gap:5px;
    color: #000;
  }
  /* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .custom-seo-section {
    padding: 20px 10px; /* Further reduce padding for mobile devices */
  }

  .section-title {
    font-size: 24px; /* Further reduce the font size on smaller screens */
  }

  .content-wrapper {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align all content */
  }

  .seomy-image img {
    max-width: 350px; /* Make image smaller for mobile */
  }

  .seo-details {
    max-width: 100%; 
    margin-top: 10px; 
  }

  .detail-item {
    align-items: center; /* Center align each detail item */
    text-align: center; /* Center-align text */
    flex-direction: column;
    margin-left: 150px;
  }
  .detail-item P{
    margin-left: 50PX;
    margin-top: -20PX;
  }
}
  
  
  /* Responsive Design */
  /*
  @media screen and (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
  
    .seo-details {
        max-width: 100%;
    }
  }
  */
  /*-----------------------------*/
  .analytics-seo-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 80px;
    background-color: #fff;
  }
  
  .section-title {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .analytics-content {
    max-width: 50%;
  }
  
  .analytics-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .detailmy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
    transform: translateY(50px);
  }

  .detail-itemkk p{
    margin-top: -25px;
    margin-left: 70px;
  }
  
  .icon {
    width: 30px;
    height: 30px;
  }
  .analytics-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 100px;
  }
   
  
  .chart-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .chart-image {
    width: 400px;
    height: auto;
    margin-bottom: 100px;
    margin-right: 40px;
  }
  
  
  
  .dashboard-image {
    position: absolute;
    top:1000px;
    
    width: 200px;
    height: auto;
  }
  /*
  .dashboard-image {
    position: absolute;
    top: 0;
    left: 0; 
    width: 150px;
    height: auto;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  */
  
  
  /* Animation Styles */
  [data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .analytics-seo-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
  
    .analytics-content, .analytics-visuals {
        max-width: 100%;
        width: 100%;
        flex-direction: center;
        text-align: center;
    }

    .detail-item p{
      flex-direction: column;
      justify-content: center;
      width: auto;
      height: auto;
      align-items: center;
    }
  
    .chart-image{
      margin-left: -40px;

    } 
    
    .dashboard-image {
        width: 100%;
        flex-direction: center;
        justify-content: center;
    }
    .detail-itemkk p{
      margin-top: 20px;
      margin-left: -20px;
    }
  }
  
  /* --seo offering -*/
  /* SEO Offering Section */
  .myseo-offering-section {
    background-color: black;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .myseo-offering-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffaa17;
  }
  
  .myseo-offering-grid {
    display:flex;
   margin-left: 200px;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .myseo-offering-item {
    background-color: white;
    width: 220px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .myseo-offering-item:hover {
    transform: translateY(-10px);
  }
  
  .myseo-offering-item img {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .myseo-offering-item h3 {
    font-size: 1.2rem;
    color: #ffaa17;
    margin-bottom: 10px;
  }
  
  .myseo-offering-item p {
    font-size: 0.9rem;
    color: black;
  }
  .text-contentmy{
    text-align: right;
  }
  
  .btn-discover-more {
    display:inline-flex;
   
    margin-left: 1000px;
    padding: 10px 20px;
    background-color: #ffaa17;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-discover-more:hover {
    background-color: #ffaa17;
  }
  
  .text-contentmy h1{
    text-align: right;
    color: #000;
  }
  .text-contentmy h2{
    text-align: right;
    color: #000;
  }
  .text-contentmy p{
    text-align: right;
    color: #000;
  }
/* Responsive Design - Tablet View */
@media (max-width: 768px) {
  .myseo-offering-grid {
      justify-content: center;
      gap: 15px;
      flex-direction: column;
      text-align: center;
      height: auto;
      width: auto;
      margin-left: -10px;
  }

  .myseo-offering-item {
      width: 45%; /* Set width to 45% for tablets to fit two items in a row */
      margin: 10px auto; /* Center the items */
  }

  .myseo-offering-section h2 {
      font-size: 1.8rem; /* Adjust heading size for tablet view */
  }
}

/* Responsive Design - Mobile View */
@media (max-width: 480px) {
  .myseo-offering-grid {
      flex-direction: column; /* Stack items vertically on small screens */
      gap: 10px; /* Reduce gap for better spacing on mobile */
      justify-content: center;
      text-align: center;
      height: auto;
      width: auto;
  }

  .myseo-offering-item {
      width: 100%; /* Full width for mobile view */
      max-width: 90%; /* Add some margin around items */
  }

  .myseo-offering-section h2 {
      font-size: 1.6rem; /* Adjust heading size for mobile view */
  }

  .btn-discover-more {
      padding: 8px 16px; /* Smaller padding for mobile */
  }
}

.nav-link{
  color: #fff!important;
}
.dropdown-menu{
  padding-left: 20px!important;
  width: auto;
}
.navbar{
  width: auto!important;
  margin-top: -10px!important;
  
}
