 /* Custom CSS for Riyan Tech Website */

/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}
 html, body {
      overflow-x: hidden;
    }
.navbar-nav {
      margin-right: 2rem;
    }
    .dropdown-menu {
      z-index: 1050;
    }
/* Base underline-link styling */
.underline-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  color: black; /* default color */
  transition: color 0.3s ease;
}

/* Underline animation */
.underline-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #0056b3; /* underline color */
  transition: width 0.3s ease;
}

/* Hover underline effect */
.underline-link:hover::after {
  width: 100%;
}

/* Active underline + text color */
.underline-link.active {
  //color: #782054 !important; /* active text color */
  color: #eb8f28 !important; /* active text color */
  
  font-weight: bolder;
}

.underline-link.active::after {
  width: 100%;
  background-color: #0056b3; /* keep underline same */
}

/* Remove underline from dropdown items */
.dropdown-menu .dropdown-item::after {
  content: none !important;
}



    /* Carousel Styles */
    #heroCarousel .carousel-item {
      height: 80vh;
      position: relative;
      background-size: cover;
      background-position: center;
    }

    #heroCarousel .carousel-item::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    #heroCarousel .carousel-item .container {
      position: relative;
      z-index: 2;
    }

    #heroCarousel .text-start {
      max-width: 600px;
    }

    .custom-btn-hover:hover {
      background-color: white !important;
      color: black !important;
      border-color: white !important;
    }

    .carousel-indicators {
      z-index: 3;
      bottom: 20px;
    }

    .carousel-indicators [data-bs-target] {
      width: 40px;
      height: 4px;
      border-radius: 2px;
      background-color: rgba(255, 255, 255, 0.5);
    }

    .carousel-indicators .active {
      background-color: white;
    }

    .carousel-control-prev,
    .carousel-control-next {
      z-index: 3;
      width: 5%;
    }
    .aboutusimage{
        width:100%;
        height:400px;
    }



    

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius:10px;
   
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover .card {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,123,255,0.3);
}

.service-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
}

.service-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.statsnew {
  background-image: url('images/banner5.jpg') !important;
 // border:2px solid red;
}
.anit {
  background-image: url('images/anitbanner.jpg') !important;
 
}
.letsoh{
    background-image: url('images/letsohbanner.jpg') !important;
 
}
.distropal {
  background-image: url('images/distropalbanner.jpg') !important;
 
}
.stats {
  position: relative;
  padding: 50px 0;
  height: 400px;
  background-image: url('images/banner3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
}

.stats:before {
  content: "";
  background: rgba(0, 0, 0, 0.6); /* Optional dark overlay */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}


/* Portfolio Items */
.portfolio-item {
    transition: all 0.3s ease;
    cursor: pointer;
    height:450px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover .card {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.portfolio-item .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-item:hover .card-img-top {
    transform: scale(1.05);
}

.portfolio-item .card-title {
    color: var(--dark-color);
    font-weight: 600;
}

.portfolio-item .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  //background: #3D1314;;
  background: black !important;
  
 // padding: 0 0 30px 0;
  color: white;
  font-size: 14px;
}

#footer .footer-top {
  //background: #3D1314;
  background: black;
  
  padding: 30px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px !important;

}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
 
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3D1314;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3D1314;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3D1314;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #555555;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #3D1314;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3D1314;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #3D1314;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
 // border-top:1px solid white;
  margin:0px !important;

  font-size: 16px;
  padding-bottom:5px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}
.whitecolor
{
  color:white;
  text-decoration:none;
}
.whitecolor:hover{
  color:white;
}
.navbar-nav {
      margin-right: 2rem;
    }
    .dropdown-menu {
      z-index: 1050;
    }

    /* Carousel Styles */
    #heroCarousel .carousel-item {
      height: 80vh;
      position: relative;
      background-size: cover;
      background-position: center;
    }

    #heroCarousel .carousel-item::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    #heroCarousel .carousel-item .container {
      position: relative;
      z-index: 2;
    }

    #heroCarousel .text-start {
      max-width: 600px;
    }

    .custom-btn-hover:hover {
      background-color: white !important;
      color: black !important;
      border-color: white !important;
    }

    .carousel-indicators {
      z-index: 3;
      bottom: 20px;
    }

    .carousel-indicators [data-bs-target] {
      width: 40px;
      height: 4px;
      border-radius: 2px;
      background-color: rgba(255, 255, 255, 0.5);
    }

    .carousel-indicators .active {
      background-color: white;
    }

    .carousel-control-prev,
    .carousel-control-next {
      z-index: 3;
      width: 5%;
    }
  
    .secondpart{
      margin-left:30%;
    }
    .thirdpart{
       margin-left:25%;
    }


    
/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h5 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
}
.clientimage {
  width: 100px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clientimage:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}


/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    //padding-top: 20px;
   // min-height: 100vh;
    //display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding:3%;
}

.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* Team Member Cards */
.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

/*.member-image img {
    width: 100%;
    height: 250px;
   // object-fit: cover;
    transition: all 0.3s ease;
}.member-image img {
    width: 200px; 
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 auto; 
    display: block;
}*/

/*

.team-member:hover .member-image img {
    transform: scale(1.1);
}*/ 

.circle-frame {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* 👈 NEW */
    transition: transform 0.3s ease;
}

.team-member:hover .circle-frame img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-info .social-links {
    margin-top: 1rem;
}

.member-info .social-links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 0.25rem;
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    padding:3%;
  //  min-height: 100vh;
   // display: flex;
   // align-items: center;
    //background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
       background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
}

.services-overview .overview-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.services-overview .overview-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.service-icon-large i {
    font-size: 1.5rem;
    color: white;
}

.service-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.service-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-tech h5 {
    color: var(--dark-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
}

.products-section {
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Hero Section */
.portfolio-hero {
   // padding-top: 20px;
   // min-height: 100vh;
    //display: flex;
    align-items: center;
   // background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3%;
}

.portfolio-stats .stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-stats .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.portfolio-stats .stat-box h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-stats .stat-box p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 3rem;
}

.filter-btn {
    margin: 0 0.5rem 1rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Portfolio Cards */
.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.overlay-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tech-stack {
    margin-bottom: 1rem;
}

.tech-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    margin: 0 0.25rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.project-meta span {
    display: flex;
    align-items: center;
}

.project-meta i {
    margin-right: 0.5rem;
}


/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
  //  padding-top: 20px;
  //  min-height: 100vh;
   // display: flex;
    align-items: center;
  //  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3%;
}

.contact-highlights .highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-highlights .highlight-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1);
}

.contact-info-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Enhanced Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-enhanced .form-control,
.contact-form-enhanced .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form-enhanced .form-control:focus,
.contact-form-enhanced .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.contact-form-enhanced .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-enhanced .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 25px;
}

/* Business Hours */
.hours-list {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-item .time {
    color: var(--secondary-color);
}

.emergency-contact {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.emergency-contact h5 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.office-info {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.office-info p {
    margin-bottom: 1rem;
}

.office-info ul li {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.6;
}



/* Hero Section - Web */
        .web-hero {
            position: relative;
            width: 100%;
            height: 400px;
            background: url('images/web1.webp') center/cover no-repeat;
           //   background-image: url('images/banner5.jpg') !important;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;
           // margin-top:40px;
        }
        
        /* Dark overlay for better text readability */
        .web-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .web-hero-text {
            position: relative;
            z-index: 2;
            color: white;
            padding: 20px;
            font-size: clamp(2rem, 8vw, 4.5rem); /* Better responsive scaling */
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .web-hero {
                height: 70vh;
                min-height: 300px;
                background-position: 70% center;
            }
            
            .web-hero-text {
                font-size: clamp(1.8rem, 10vw, 3rem);
                padding: 15px;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .web-hero {
                height: 60vh;
                min-height: 250px;
            }
            
            .web-hero-text {
                font-size: clamp(1.5rem, 8vw, 2.5rem);
                margin-top: 30px;
                text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
            }
            
            .web-hero::before {
                background: rgba(0, 0, 0, 0.5);
            }
        }

/* Services Grid */
   .web { 
    padding: 20px;
    background-color: #ffffff;
    }

.web h2 {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  display: block;
  text-align:center;
  width: 100%;
}


.web h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
 /*--Feature Card--*/
.features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 20px;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            border-top: 5px solid #4895ef;
            padding:30px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            padding: 25px 25px 15px;
            background: white;
        }
        .card-header i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #4895ef;
        }
        .card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: black;
        }
        .web-card-body {
            padding: 0 2px 25px;
            flex-grow: 1;
        }
        @media (max-width: 768px) {
            .features-container {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .web h2 {
                font-size: 1.7rem;
            }
            
            .card-header p {
                font-size: 0.7rem;
                padding: 0 20px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
            

        
/*----- hosting Services---------*/
.hosting-services {
            background: white;
            border-radius: 10px;
            padding: 10px;
            margin-top: 20px;
            /*box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);*/
            
            width: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            text-align:center;
        }
        
           /*.hosting-services:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
     .hosting-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c, #f39c12);
            animation: gradient-animation 8s ease infinite;
            background-size: 400% 400%;
        }*/
        
        .hosting-services h2 {
            font-size: 30px;
            color: black;
            font-weight: 700;
            margin-bottom: 40px;
             position: relative;
            display: block;
            text-align:center;
            width: 100%;
            margin: 30px 0;
            gap: 15px;
}
        .hosting-services h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
        
        .hosting-services h2 i {
            background: linear-gradient(135deg, #3498db, #2ecc71);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 2.2rem;
            animation: pulse 2s infinite;
        }
        
        .hosting-content p {
            text-align:left;
            padding-left:30px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #34495e;
            margin-bottom: 10px;
        }
        
        .hosting-features {
            margin: 10px 0;
            list-style: none;
        }
        
        .hosting-features li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            border-radius: 10px;
            background: #f8f9fa;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .hosting-features li:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .hosting-features li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #3498db;
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.3s ease;
        }
        
        .hosting-features li:hover::before {
            transform: scaleY(1);
        }
        
        .hosting-features i {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .hosting-features li:nth-child(1) i {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }
        
        .hosting-features li:nth-child(2) i {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
        }
        
        .hosting-features li:nth-child(3) i {
            background: linear-gradient(135deg, #42e695, #3bb2b8);
            box-shadow: 0 5px 15px rgba(66, 230, 149, 0.3);
        }
        
        .hosting-features li:nth-child(4) i {
            background: linear-gradient(135deg, #ff9a9e, #fad0c4);
            box-shadow: 0 5px 15px rgba(255, 154, 158, 0.3);
        }
        
        .hosting-features li:hover i {
            transform: rotate(15deg) scale(1.1);
        }
        
        .hosting-features li span {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            transition: all 0.3s ease;
        }
        
        .hosting-features li:hover span {
            color: #3498db;
        }
        
        .hosting-cta {
            font-size: 1.2rem;
            font-weight: 500;
            color:rgb(8, 8, 8);
            padding: 10px;
            /*border-left: 4px solid #3498db;*/
            background: white;
            border-radius: 0 10px 10px 0;
        }
        
        .hosting-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0062ff;
            color: white;
            padding: 15px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            font-size: 1.1rem;
        }
        
        .hosting-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        .hosting-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
        }
        
        .hosting-cta-button:hover::before {
            left: 100%;
        }
        
        .hosting-cta-button i {
            transition: transform 0.3s ease;
        }
        
        .hosting-cta-button:hover i {
            transform: translateX(5px);
        }
        
        /* Floating animation for icons */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .hosting-features li i {
            animation: float 3s ease-in-out infinite;
        }
        
        .hosting-features li:nth-child(1) i { animation-delay: 0.2s; }
        .hosting-features li:nth-child(2) i { animation-delay: 0.4s; }
        .hosting-features li:nth-child(3) i { animation-delay: 0.6s; }
        .hosting-features li:nth-child(4) i { animation-delay: 0.8s; }
        
        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hosting-services {
                padding: 30px 20px;
            }
            
            .hosting-services h2 {
                font-size: 2rem;
            }
            
            .hosting-features li {
                padding: 12px 15px;
            }
            
            .hosting-cta-button {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .hosting-services h2 {
                font-size: 1.8rem;
            }
            
            .hosting-features li {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .hosting-features li::before {
                width: 100%;
                height: 4px;
                transform: scaleX(0);
                transform-origin: left;
            }
            
            .hosting-features li:hover::before {
                transform: scaleX(1);
            }
        }


/* Container holding the image and text */
    .web-agency-container {
      display: flex;
      align-items: left;
      justify-content: space-between;
      background-color: white;
      padding: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Styling for the image */
    .web-agency-image img {
      width: 100%;
      max-width: 550px;
      height: 450px;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    /* Styling for the agency text */
.web-agency-text {
      flex: 1;
      max-width: 600px;
      font-size: clamp(0.8rem, 0.30vw + 0.7rem, 1rem);
      padding-top:20px;
      line-height: 1.8;
      color: #333;
      color: #495057;
      text-align:justify;
    }
.web-agency-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  display: block;
  text-align:center;
  width: 100%;
}

.web-agency-text h3::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .web-agency-container {
        flex-direction: column;
        align-items: center;
      }
      .web-agency-text {
        text-align: justify;
      }
    }


/*Tech we use*/
.container {
            max-width: 1200px;
            width: 100%;
          //  padding: 20px;
        }
        
        .tech {
            background: white;
            /*backdrop-filter: blur(10px);
            border-radius: 20px;*/
            padding: 20px 20px;
            /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);*/
            border: 1px solid rgba(94, 234, 212, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .tech::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .tech h2 {
            text-align: center;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 80px;
            color: black;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .tech h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #0062ff;
            border-radius: 2px;
        }
        
        .technology-stack {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        .tech-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            border: 1px solid rgba(94, 234, 212, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .tech-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(56, 189, 248, 0.2);
            border-color: rgba(94, 234, 212, 0.3);
        }
        
        .tech-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #5eead4, #38bdf8);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .tech-section:hover::before {
            transform: scaleX(1);
        }
        
        .tech-section h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 25px;
            justify-content: center;
        }
        
        .tech-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 12px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(56, 189, 248, 0.1);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        
        .tech-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 30px rgba(56, 189, 248, 0.25);
            background: rgba(15, 23, 42, 0.9);
            border-color: rgba(94, 234, 212, 0.3);
            z-index: 2;
        }
        
        .tech-card i {
            font-size: 3.5rem;
            transition: all 0.3s ease;
        }
        
        .tech-card:hover i {
            transform: scale(1.2);
            filter: drop-shadow(0 0 8px rgba(94, 234, 212, 0.7));
        }
        
        .tech-card span {
            font-size: 1.2rem;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .tech-card:hover span {
            color: #5eead4;
            letter-spacing: 0.5px;
        }
        
        /* Color coding for different sections */
        .web-tech .tech-card i {
            color: #38bdf8;
        }
        
        .mobile-tech .tech-card i {
            color: #818cf8;
        }
        
        .db-tech .tech-card i {
            color: #5eead4;
        }
        
        /* Floating animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .tech-card {
            animation: float 4s ease-in-out infinite;
        }
        
        .tech-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .tech-card:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        .tech-card:nth-child(4) {
            animation-delay: 0.6s;
        }
        
        .tech-card:nth-child(5) {
            animation-delay: 0.8s;
        }
        
        .tech-card:nth-child(6) {
            animation-delay: 1.0s;
        }
        
        .tech-card:nth-child(7) {
            animation-delay: 1.2s;
        }
        
        .tech-card:nth-child(8) {
            animation-delay: 1.4s;
        }
        
        .tech-card:nth-child(9) {
            animation-delay: 1.6s;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .tech-grid {
                grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            }
            
            .tech-card i {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .tech {
                padding: 40px 20px;
            }
            
            .tech h2 {
                font-size: 2.3rem;
            }
            
            .tech-section h3 {
                font-size: 1.6rem;
            }
            
            .tech-grid {
                gap: 15px;
            }
            
            .tech-card {
                padding: 25px 15px;
            }
        }
        
        @media (max-width: 576px) {
            .tech h2 {
                font-size: 2rem;
            }
            
            .tech-section {
                padding: 20px 15px;
            }
            
            .tech-section h3 {
                font-size: 1.4rem;
            }
            
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tech-card {
                padding: 20px 10px;
            }
            
            .tech-card i {
                font-size: 2.5rem;
            }
            
            .tech-card span {
                font-size: 1rem;
            }
        }
/* Responsive adjustments */
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}


/*----------------------------------------------
        Service - Digital Marketing             
------------------------------------------------*/
.digi-hero {
            position: relative;
            width: 100%;
            height: 400px;
            background: url('images/digital.webp') center/cover no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            overflow: hidden;
          //  margin-top:40px;
        }
        .softwaredevelopment{
              background: url('images/software.jpg') center/cover no-repeat;
          
        }
          .staffaugmentation{
              background: url('images/staff.jpg') center/cover no-repeat;
          
        }
            .appdevelop{
              background: url('images/app.jpg') center/cover no-repeat;
          
        }
            .itconsultancy{
              background: url('images/itconsultancy.jpg') center/cover no-repeat;
          
        }
        
        /* Dark overlay for better text readability */
        .digi-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .digi-hero-text {
            position: relative;
            z-index: 2;
            color: white;
            padding: 20px;
            font-size: clamp(2rem, 8vw, 4.5rem); /* Better responsive scaling */
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .digi-hero {
                height: 70vh;
                min-height: 300px;
                background-position: 70% center;
            }
            
            .digi-hero-text {
                font-size: clamp(1.8rem, 10vw, 3rem);
                padding: 15px;
                margin-top: 40px;
            }
        }


/* Services Section */
.digi-services {
    padding: 30px 0;
    
}

.digi-services h2 {
    font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  display: block;
  text-align:center;
  width: 100%;
  margin: 50px 0;
}
.digi-services h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}


.digi-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.digi-service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #4895ef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #eee
}

.digi-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #0062ff;
}

.digi-service-icon {
    width: 80px;
    height: 80px;
            background: rgba(0, 98, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: #0062ff;

}

.digi-service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
/* Mobile Responsive */
/* Mobile Responsive */
        @media (max-width: 900px) {
            .digi-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
            
            .digi-service-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .digi-services {
                padding: 50px 15px;
            }
            
            .digi-services h2 {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }
            
            .digi-services-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                gap: 20px;
            }
            
            .digi-service-card {
                padding: 30px;
            }
            
            .digi-service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .digi-services {
                padding: 40px 10px;
            }
            
            .digi-services h2 {
                font-size: 1.8rem;
                margin: 20px 0 40px;
            }
            
            .digi-services h2::after {
                width: 60px;
                bottom: -12px;
            }
            
            .digi-service-card {
                padding: 25px 20px;
                border-radius: 12px;
            }
            
            .digi-service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            
            .digi-service-card h3 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            
            .digi-service-card p {
                font-size: 1rem;
            }
        }
/*End of Services*/
/*Agency */
/* Container holding the image and text */
    .digi-agency-container {
      display: flex;
      align-items: left;
      justify-content: space-between;
      padding: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }

     .digi-agency-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .digi-agency-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .digi-agency-image img:hover {
            transform: scale(1.03);
        }
    /* Styling for the agency text */
.digi-agency-text {
      flex: 1;
      max-width: 600px;
      font-size: clamp(0.8rem, 0.30vw + 0.7rem, 1rem);
      padding-top:20px;
      line-height: 1.8;
      color: #333;
      color: #495057;
      text-align:justify;
    }
.digi-agency-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  display: block;
  text-align:center;
  width: 100%;
}

.digi-agency-text h3::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .digi-agency-container {
        flex-direction: column;
        align-items: center;
      }
      .digi-agency-text {
        text-align: center;
      }
    }
/*-----------------*/
 /* Responsive adjustments */
        @media (max-width: 1024px) {
            .digi-agency-container {
                gap: 30px;
            }
            
            .digi-agency-text h3 {
                font-size: 26px;
                margin-bottom: 35px;
            }
        }
        
        @media (max-width: 900px) {
            .digi-agency-image img {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .digi-agency-container {
                flex-direction: column;
                align-items: center;
                padding: 25px;
            }
            
            .digi-agency-text {
                text-align: center;
                padding-top: 30px;
            }
            
            .digi-agency-text p {
                text-align: center;
            }
            
            .digi-agency-text ul {
                text-align: left;
            }
        }
        
        @media (max-width: 600px) {
           
            
            .digi-agency-container {
                padding: 20px;
                border-radius: 12px;
            }
            
            .digi-agency-image {
                min-width: 100%;
            }
            
            .digi-agency-image img {
                height: auto;
                min-height: 300px;
                max-height: 350px;
            }
            
            .digi-agency-text h3 {
                font-size: 24px;
                margin-bottom: 30px;
            }
            
            .digi-agency-text h3::after {
                width: 50px;
                bottom: -8px;
            }
            
            .digi-agency-text li {
                margin-bottom: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .digi-agency-text h3 {
                font-size: 22px;
            }
            
            .digi-agency-text ul {
                padding-left: 20px;
            }
            
            .digi-agency-text li {
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 400px) {
            .digi-agency-container {
                padding: 15px;
            }
            
            .digi-agency-text h3 {
                font-size: 20px;
            }
            
            .digi-agency-text p {
                font-size: 0.95rem;
            }
        }
        

/*Process Flow*/
.digi-process-section {
  position: relative;
  overflow: hidden;
}
.digi-process-section h2{
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  display: block;
  text-align:center;
  width: 100%;
  margin: 50px 0;
}
.digi-process-section h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.digi-process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.digi-process-timeline::before {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, #0062ff, #00c4ff);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.digi-process-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.digi-step-number {
  width: 60px;
  height: 60px;
  background: #0062ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 25px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 98, 255, 0.3);
}

.digi-step-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
}

.digi-step-content h3 {
  color: #0062ff;
  margin-bottom: 10px;
}

/* Alternating sides for desktop */
@media (min-width: 768px) {
  .digi-process-step:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
  }
  
  .digi-process-step:nth-child(odd) .digi-step-content {
    margin-right: 25px;
  }
  
  .digi-process-step:nth-child(even) .digi-step-content {
    margin-left: 25px;
  }
}

/* Mobile view */
@media (max-width: 767px) {
  .digi-process-timeline::before {
    left: 30px;
  }
  
  .digi-process-step {
    flex-direction: row;
    text-align: left;
  }
  
  .digi-step-number {
    margin-left: 0;
  }
  
  .digi-step-content {
    margin-left: 25px;
  }
}

/* Animation */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/*Apart Section*/
/*.digi-unique-section {
  background: #f8f9fa;
}*/
.digi-unique-section h2{
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  display: block;
  text-align:center;
  width: 100%;
  margin: 50px 0;
}
.digi-unique-section h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background: #0062ff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.digi-unique-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.digi-feature {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            text-align: center;
            position: relative;
            border-top: 5px solid #4895ef;
            padding:30px;
}

.digi-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.digi-feature-icon {
  font-size: 2rem;
  color: #0062ff;
  margin-bottom: 15px;
}

.digi-feature h3 {
  color: #212529;
  margin-bottom: 10px;
  font-size:24px;
}

.digi-feature p {
  color: #6c757d;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .digi-unique-features {
    grid-template-columns: 1fr;
  }
}

.quote{
    margin-left:30% !important; 
}

@media (max-width: 767.98px) {
  .stats {
    height: auto !important; /* or a specific height like 100vh or 300px */
    padding: 20px 10px; /* optional: add spacing inside */
    overflow: hidden;   /* optional: prevents unwanted scroll */
  }
  .clientimage {
    margin-top:5% !important;
  }
   .secondpart{
      margin-left:0px !important;
    }
    .thirdpart{
       margin-left:0px !important;
    }
    .mobilefaq{
        width:350px !important;
        height:350px !important;
       
    }
    .quote{
    margin-left:0% !important; 
    }   

    .mobileanit{
        width:250px !important;
    }


}
