/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/
  .top-nav{
            background-color: #ffdf07;
        }

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
    .carousel-control-prev {
    width: 50px!important;
    height: 40px!important;
    position: absolute!important;
    top: 50%!important;
    left: 0!important;
    background: var(--bs-primary)!important;
    border-radius: 0 50px 50px 0!important;
    opacity: 1!important;
}
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/
.btn-secondary:hover{
    background-color: #fff!important;
    color:#303e5f!important;
}
.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #303e5f;
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 16px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #ffdf07;
}

.contact-form {
    background: #ffdf07;
}

/*** Contact End ***/
/* about us css start */


/*** Footer Start ***/
.bg-footer{
  background-color: #0b1b42!important;
}
.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/
.carousel-indicators {
 display: none;
}


@media (max-width: 768px) {
  .carousel-content h6 {
    font-size: 1rem; /* smaller subtitle */
  }

  .carousel-content h1 {
    font-size: 2rem; /* smaller main heading */
  }

  .carousel-content p {
    font-size: 0.9rem; /* smaller paragraph */
  }

  .carousel-content .btn {
    font-size: 0.9rem; /* smaller button text */
    padding: 0.5rem 1.5rem; /* smaller padding */
  }
}
/* about us page css start */
.about-us {
    background-image: url('img/aboutus-background-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-vision-section {
  background-color: #f8f9fa;
}

.mission-card, .vision-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
}

.mission-card {
  border-left: 4px solid #212529;
}

.vision-card {
  border-left: 4px solid #ffdf07 ;
}

.section-icon {
  font-size: 2.5rem;
  color: #303e5f;
}

.vision-card .section-icon {
  color: #ffdf07;
}

.section-title {
  font-weight: 700;
  color: #212529;
  position: relative;
  padding-bottom: 10px;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #303e5f;
}

.vision-card .section-title:after {
  background: #ffdf07;
}

.section-content {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .mission-card, .vision-card {
    margin-bottom: 30px;
  }
}
/* Unique prefixed classes */
.ac-why-choose {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

.ac-image-wrapper {
  position: relative;
}

.ac-feature-img {
  transition: transform 0.3s ease;
}

.ac-image-wrapper:hover .ac-feature-img {
  transform: scale(1.02);
}

.ac-img-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: #ffdf07;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.ac-section-heading {
  font-weight: 700;
  color: #212529;
  position: relative;
}

.ac-section-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #ffdf07;
}

.ac-highlight-box {
  border-left: 4px solid #ffdf07;
  transition: all 0.3s ease;
  background: white;
}

.ac-highlight-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ac-benefits-list {
  list-style: none;
  padding-left: 0;
}

.ac-benefits-list li {
  padding: 8px 0;
  font-size: 1.05rem;
}

.ac-primary-btn {
  background-color: #ffdf07;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s;
  color: white;
}

.ac-primary-btn:hover {
  background-color: #ffdf07;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
  color: white;
}

.ac-primary-color {
  color: #ffdf07;
}

@media (max-width: 767.98px) {
  .ac-content-block {
    padding-left: 0 !important;
    margin-top: 30px;
  }
  
  .ac-img-badge {
    right: 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .contact-form{
    padding: 10px !important;
  }
  .contact-map{
    padding: 10px !important;
  }
}




/* brand identity page css start */
/* Unique prefixed classes with your specified colors */
.ac-brand-identity-special {
  position: relative;
  padding: 100px 0;
 background-image: url('img/brandingbackgroundimage.png');
  color: white;
  overflow: hidden;
}

.ac-brand-overlay-special {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('brand-bg.jpg') center/cover;
  opacity: 0.15;
}

.ac-brand-header-special {
  position: relative;
  z-index: 2;
}

.ac-brand-prehead-special {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}

.ac-brand-mainhead-special {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ac-brand-divider-special {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto;
}

.ac-brand-line-special {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.ac-brand-icon-special {
  margin: 0 15px;
  color: #ffdf07;
  font-size: 1.2rem;
}

.ac-brand-tagline-special {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.ac-brand-card-special {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
}

.ac-brand-card-special:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.ac-brand-featured-special {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
}

.ac-brand-badge-special {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #ffdf07;
  color: #212529;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
  font-size: 0.8rem;
}

.ac-brand-iconwrap-special {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: white;
}

.ac-brand-cardtitle-special {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
  position: relative;
}

.ac-brand-cardtitle-special:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #ffdf07;
}

.ac-brand-cardtext-special {
  opacity: 0.9;
  line-height: 1.6;
}

.ac-brand-iconalt-special {
  color: #ffdf07;
}

@media (max-width: 767px) {
  .ac-brand-mainhead-special {
    font-size: 2.5rem;
  }
  
  .ac-brand-tagline-special {
    font-size: 1.2rem;
  }
  
  .ac-brand-card-special {
    margin-bottom: 20px;
  }
}
/* brand identity page css end */
/* Section Styling */
.ac-bid-section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Content Styling */
.ac-bid-subtitle {
  display: inline-block;
  color: #ffdf07;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ac-bid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
  position: relative;
  padding-bottom: 15px;
}

.ac-bid-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #ffdf07;
}

.ac-bid-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 1.5rem;
}

/* Highlight Box */
.ac-bid-highlight-box {
  background-color: white;
  border-left: 4px solid #ffdf07;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.ac-bid-highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Process Steps */
.ac-bid-process-section {
  margin-top: 2.5rem;
}

.ac-bid-process-title {
  font-size: 1.4rem;
  color: #212529;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.ac-bid-process-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #ffdf07;
}

.ac-bid-process-steps {
  list-style: none;
  padding-left: 0;
}

.ac-bid-process-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #e9ecef;
}

.ac-bid-process-item:last-child {
  border-bottom: none;
}

.ac-bid-process-icon {
  width: 40px;
  height: 40px;
  background: #ffdf07;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.ac-bid-process-content {
  flex: 1;
  color: #495057;
  line-height: 1.6;
}

/* Image Styling */
.ac-bid-image {
  position: relative;
  padding: 20px;
}

.ac-bid-img-shadow {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.ac-bid-shape-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #ffdf07;
  border-radius: 30px;
  bottom: -30px;
  right: -30px;
  z-index: 1;
  opacity: 0.8;
  transform: rotate(15deg);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .ac-bid-title {
    font-size: 2rem;
  }
  
  .ac-bid-image {
    margin-top: 50px;
  }
  
  .ac-bid-shape-decoration {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .ac-bid-title {
    font-size: 1.8rem;
  }
  
  .ac-bid-shape-decoration {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -20px;
  }
}

/* 
third section of branding page css  */
  .text-gradient-primary {
        background: linear-gradient(90deg, #303e5f, #ffdf07);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
    .transition-all {
        transition: all 0.3s ease;
    }
    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    .icon-wrapper {
        transition: all 0.3s ease;
    }
    .service-item:hover .icon-wrapper {
        background-color: rgba(13, 110, 253, 0.2) !important;
        transform: scale(1.1);
    }
    /* web design and development page css start */
  .process-box {
        background: white;
        border-radius: 0.75rem;
        padding: 1.25rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        text-align: center;
    }
    
    .process-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .step-number-box {
        width: 2.5rem;
        height: 2.5rem;
        background: linear-gradient(90deg, #303e5f, #ffdf07);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin: 0 auto 0.75rem;
        font-size: 1rem;
    }
    
    .step-content h4 {
       color: linear-gradient(90deg, #303e5f, #ffdf07);
    }

    .feature-card {
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    .feature-icon {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 110, 253, 0.1);
        border-radius: 50%;
    }
    .service-tag {
        background-color: #f8f9fa;
        transition: all 0.2s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    .service-tag:hover {
        background-color: #e9ecef;
        transform: scale(1.05);
    }

    /* web design and development page css end */
 /* digital marketing css start */
   /* Custom CSS with unique class names */
  .acreate-digi-hero {
    background-color: #f8f9fa;
  
  }
  
  .acreate-main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
  }
  
  .acreate-hero-text {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
  }
  
  .acreate-primary-btn {
    background-color: #ffdf07;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .acreate-primary-btn:hover {
    background-color: #303e5f;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .acreate-process-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .acreate-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: linear-gradient(90deg, #303e5f, #ffdf07);
    margin-bottom: 50px;
    position: relative;
  }
  
  .acreate-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
  }
  
  .acreate-process-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 20px;
  }
  
  .acreate-process-card:hover {
    background-color: #f8f9fa;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .acreate-step-number {
    width: 50px;
    height: 50px;
    background-color: #303e5f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
  }
  
  .acreate-step-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
  }
  
  .acreate-why-us {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .acreate-feature-box {
    display: flex;
   align-items: center;
   justify-content: center;
flex-direction: column;
text-align: center;

  }
  
  .acreate-feature-icon {
    font-size: 2rem;
    color:  #ffdf07;
    margin-right: 20px;
    min-width: 50px;
  }
  
  .acreate-feature-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .acreate-cta-section {
    padding: 80px 0;
    background: #fff;
    color: white;
  }
  
  .acreate-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .acreate-cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .acreate-secondary-btn {
       background: linear-gradient(90deg, #303e5f, #ffdf07);
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .acreate-secondary-btn:hover {
    background: linear-gradient(90deg, #303e5f, #ffdf07);
    color: #fff;
  }
  /* digital marketing css end */
  .acreate-dm-compact {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .acreate-compact-header h2 {
    font-size: 2.2rem;
    color: #303e5f;
    margin-bottom: 15px;
  }
  
  .acreate-compact-header h2 span {
    color: #ffdf07;
    position: relative;
  }
  
  .acreate-compact-header p {
    color: #6c757d;
    margin-bottom: 40px;
  }
  
  .acreate-compact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .acreate-compact-card:hover {
    transform: translateY(-5px);
  }
  
  .acreate-compact-icon {
    font-size: 2rem;
    color: #ffdf07;
    margin-bottom: 15px;
  }
  
  .acreate-compact-card h3 {
    color: #303e5f;
    margin-bottom: 15px;
  }
  
  .acreate-compact-card p {
    color: #6c757d;
  }
  
  .acreate-compact-service {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .acreate-compact-service i {
    font-size: 2rem;
    color: #ffdf07;
    margin-bottom: 15px;
  }
  
  .acreate-compact-service h4 {
    color: #303e5f;
    margin-bottom: 5px;
  }
  
  .acreate-compact-service p {
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  .acreate-compact-cta {
    background: linear-gradient(135deg, #303e5f, #1e2a4a);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
  }
  
  .acreate-compact-cta h4 {
    margin-bottom: 15px;
  }
  
  .acreate-secondary-btn {
    background: linear-gradient(90deg, #303e5f, #ffdf07);
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .acreate-secondary-btn:hover {
    background: linear-gradient(90deg, #303e5f, #ffdf07);
    color: #fff;
    transform: translateY(-2px);
  }



  /* SEO page css start */
  /* Ultra-Unique Minimal CSS */
  .quantumSeo-vortex {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8faff 100%);
  }
  
  .quantumSeo-neonTitle {
    font-size: 2.8rem;
    color: #1a237e;
    font-weight: 800;
    margin-bottom: 15px;
  }
  
  .quantumSeo-glowHighlight {
    color: #ff6d00;
    position: relative;
  }
  
  .quantumSeo-glowHighlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,109,0,0.2);
    z-index: -1;
  }
  
  .quantumSeo-subBeam {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .quantumSeo-orbitalCard {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26,35,126,0.08);
    border-left: 4px solid #ffdf07;
  }
  
  .quantumSeo-pulseText {
    
    line-height: 1.8;
    font-size: 1.1rem;
  }
  .quantumSeo-processTimeline {
    position: relative;
    padding-top: 40px;
  }
  
  .quantumSeo-processTimeline::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 90%;
  background: linear-gradient(180deg, #303e5f, #ffdf07);
  }
  
  .quantumSeo-timeNode {
    display: flex;
    margin-bottom: 40px;
    width: 50%;
  }
  
  .quantumSeo-nodeRight {
    margin-left: auto;
    flex-direction: row-reverse;
  }
  
  .quantumSeo-phaseOrb {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  
  .quantumSeo-orb1 { background: rgba(76,175,80,0.1); }
  .quantumSeo-orb2 { background: rgba(76,175,80,0.1);}
  .quantumSeo-orb3 { background: rgba(76,175,80,0.1); }
  .quantumSeo-orb4 { background: rgba(76,175,80,0.1); }
   
  .quantumSeo-phaseIcon {
    font-size: 30px;
  }
  
  .quantumSeo-orb1 .quantumSeo-phaseIcon { color: #ffdf07; }
  .quantumSeo-orb2 .quantumSeo-phaseIcon { color: #ffdf07; }
  .quantumSeo-orb3 .quantumSeo-phaseIcon { color: #ffdf07; }
  .quantumSeo-orb4 .quantumSeo-phaseIcon { color: #ffdf07; }
  
  .quantumSeo-phaseCard {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 0 20px;
    width: calc(100% - 120px);
  }
  
  .quantumSeo-phaseTitle {
  
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .quantumSeo-phaseDesc {
    
    line-height: 1.7;
  }
  
  .quantumSeo-pulseBtn {
    background: #ffdf07;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    
    transition: all 0.3s;
  }
  
  .quantumSeo-pulseBtn:hover {
    transform: translateY(-3px);

  }
  
  @media (max-width: 992px) {
    .quantumSeo-timeNode,
    .quantumSeo-nodeRight {
      width: 100%;
      flex-direction: row;
    }
    
    .quantumSeo-processTimeline::before {
      left: 40px;
      display: none;
    }
    
    .quantumSeo-phaseCard {
      width: calc(100% - 100px);
    }
  }
   /* SEO page css end */


   /* corporate gifting css start */
   /* Unique CSS classes for gifting sections */
  .gifting-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .gifting-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
  }
  
  .gifting-subtitle {
    color: #495057;
    font-size: 1.2rem;
  }
  
  .gifting-cta-btn {
     background: #ffdf07;
    
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .gifting-cta-btn:hover {
    background: #303e5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .gifting-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    position: relative;
    display: inline-block;
  }
  
  .gifting-section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffdf07;
  }
  
  .gifting-highlight {
    color: #ffdf07;
  }
  
  .gifting-step-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-top: 4px solid transparent;
  }
  
  .gifting-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top-color: #ffdf07;
  }
  
  .gifting-step-icon {
    color: #ffdf07;
  }
  
  .gifting-step-title {
    font-size: 1.3rem;
    color: #303e5f;
    margin-bottom: 15px;
  }
  
  .gifting-step-desc {
    color: #6c757d;
    line-height: 1.6;
  }
  
  .gifting-services-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .gifting-service-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border-left: 3px solid #ffdf07;
  }
  
  .gifting-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .gifting-service-name {
    color: #303e5f;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .gifting-service-desc {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .gifting-main-title {
      font-size: 2rem;
    }
    
    .gifting-section-title {
      font-size: 1.8rem;
    }
    
    .gifting-services-title {
      font-size: 1.6rem;
    }
  }
  

  
  /* corporate gifting css end */

.ac-gifting-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  
  .ac-gifting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .ac-gifting-header {
    text-align: center;
    margin-bottom: 50px;
    
    .ac-gifting-title {
      font-size: 2.5rem;
      color: #303e5f;
      margin-bottom: 15px;
      position: relative;
      
      &:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #ffdf07;
      }
    }
  }
  
  .ac-gifting-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
    
    .ac-gifting-feature {
      flex: 0 0 calc(33.333% - 30px);
      background: #fff;
      padding: 40px 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
      margin-bottom: 30px;
      
      &:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      }
    }
    
    .ac-gifting-icon {
      font-size: 3rem;
      color: #ffdf07;
      margin-bottom: 20px;
    }
    
    .ac-gifting-feature-title {
      font-size: 1.5rem;
      color: #303e5f;
      margin-bottom: 15px;
    }
    
    .ac-gifting-feature-desc {
      color: #6c757d;
      line-height: 1.6;
    }
  }
  
  .ac-gifting-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    
    .ac-gifting-service {
      flex: 0 0 calc(20% - 20px);
      background: #fff;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
      border-top: 4px solid #ffdf07;
      
      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
    }
    
    .ac-gifting-service-title {
      font-size: 1.2rem;
      color: #303e5f;
      margin: 0;
    }
  }
}


@media (max-width: 992px) {
  .ac-gifting-section {
    .ac-gifting-features {
      .ac-gifting-feature {
        flex: 0 0 calc(50% - 20px);
      }
    }
    
    .ac-gifting-services {
      .ac-gifting-service {
        flex: 0 0 calc(33.333% - 20px);
      }
    }
  }
}

@media (max-width: 768px) {
  .ac-gifting-section {
    padding: 60px 0;
    
    .ac-gifting-header {
      .ac-gifting-title {
        font-size: 2rem;
      }
    }
    
    .ac-gifting-features {
      .ac-gifting-feature {
        flex: 0 0 100%;
      }
    }
    
    .ac-gifting-services {
      .ac-gifting-service {
        flex: 0 0 calc(50% - 20px);
      }
    }
  }
}

@media (max-width: 480px) {
  .ac-gifting-section {
    .ac-gifting-services {
      .ac-gifting-service {
        flex: 0 0 100%;
      }
    }
  }
}
/* video page css start */
.ac-video-promo-section {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.ac-video-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.ac-video-promo-header {
  text-align: center;
  margin-bottom: 60px;
}

.ac-video-promo-title {
  font-size: 2.5rem;
  color: #303e5f;
  margin-bottom: 15px;
  font-weight: 700;
}

.ac-video-promo-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.ac-video-promo-divider {
  width: 80px;
  height: 4px;
  background: #ffdf07;
  margin: 20px auto;
}

.ac-video-promo-content {
  margin-bottom: 60px;
}

.ac-video-promo-intro {
  margin-bottom: 30px;
}

.ac-video-promo-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 20px;
}

.ac-video-promo-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ac-video-promo-feature {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.ac-video-promo-feature:hover {
  transform: translateY(-5px);
}

.ac-video-promo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 223, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffdf07;
  font-size: 1.5rem;
}

.ac-video-promo-feature h3 {
  color: #303e5f;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.ac-video-promo-feature p {
  color: #6c757d;
  line-height: 1.6;
}

.ac-video-promo-services {
  width: 100%;
}

.ac-video-services-title {
  text-align: center;
  font-size: 1.8rem;
  color: #303e5f;
  margin-bottom: 40px;
  position: relative;
}

.ac-video-services-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ffdf07;
}

.ac-video-services-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.ac-video-service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid #ffdf07;
  transition: all 0.3s ease;
  margin: 15px;
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
}

.ac-video-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ac-video-service-card h4 {
  color: #303e5f;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.ac-video-service-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .ac-video-service-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .ac-video-promo-title {
    font-size: 2rem;
  }
  
  .ac-video-service-card {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
  }
  
  .ac-video-promo-intro,
  .ac-video-promo-features {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* video page css end */
/* media page starts css  */
.content-wrapper {
    display: none;
}
.content-wrapper.active {
    display: block;
}
.img-thumbnail {
    cursor: pointer;
    max-width: 100px;
    transition: all 0.3s;
}
.active-thumbnail {
    border: 3px solid #ffdf07;
    transform: scale(1.1);
}
/* media page end css  */
/* contact us  page css start */
.ac-contact-hero {
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f0fa 100%);
  padding: 100px 0;
  position: relative;
}

.ac-contact-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-gradient-primary {
  background: #303e5f;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ac-contact-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #303e5f 0%, #ffdf07 100%);
  margin-bottom: 30px;
  border-radius: 4px;
}

.ac-contact-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 40px;
}

.ac-contact-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ac-hero-image {
  transition: transform 0.5s ease;
}

.ac-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(48,62,95,0.1) 0%, rgba(255,223,7,0.05) 100%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ac-contact-title {
    font-size: 2.5rem;
    text-align: start;
  }
  
  .ac-contact-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ac-contact-intro {
    text-align: start;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .ac-contact-hero {
    padding: 80px 0;
  }
  
  .ac-contact-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .ac-contact-hero {
    padding: 60px 0;
  }
}

.ac-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ac-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.ac-contact-title {
  font-size: 2.5rem;
  color: #303e5f;
  margin-bottom: 15px;
  font-weight: 700;
}

.ac-contact-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #303e5f, #ffdf07);
  margin: 0 auto 20px;
  border-radius: 4px;
}

.ac-contact-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.ac-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.ac-contact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ac-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #303e5f, #ffdf07);
  transition: all 0.3s ease;
}

.ac-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ac-contact-card:hover::before {
  height: 10px;
}

.ac-contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 223, 7, 0.1);
  border-radius: 50%;
  color: #ffdf07;
}

.ac-contact-icon svg {
  width: 32px;
  height: 32px;
}

.ac-contact-method {
  font-size: 1.3rem;
  color: #303e5f;
  margin-bottom: 15px;
}

.ac-contact-detail {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ac-contact-card a.ac-contact-detail:hover {
  color: #303e5f;
}

.ac-contact-cta {
  text-align: center;
  margin-top: 50px;
}

.ac-contact-cta p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 20px;
}

.ac-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #303e5f, #ffdf07);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(48, 62, 95, 0.3);
}

.ac-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(48, 62, 95, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ac-contact-title {
    font-size: 2rem;
  }
  
  .ac-contact-subtitle {
    font-size: 1rem;
  }
  
  .ac-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .ac-contact-card {
    padding: 30px 20px;
  }
}
/* contact us page css  end */
/* privacy policy css start */
.pp-main-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pp-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.pp-main-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #303e5f;
  position: relative;
  padding-bottom: 15px;
}

.pp-main-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ffdf07;
}

.pp-section-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.pp-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pp-section-title {
  font-size: 1.5rem;
  color: #303e5f;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.pp-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ffdf07;
}

.pp-intro-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #495057;
}

.pp-info-card {
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 3px solid rgba(255, 223, 7, 0.5);
}

.pp-subtitle {
  font-size: 1.2rem;
  color: #303e5f;
  margin-bottom: 10px;
}

.pp-description {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

.pp-usage-list, .pp-choices-list {
  padding-left: 20px;
}

.pp-list-item {
  margin-bottom: 10px;
  color: #6c757d;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.pp-list-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #ffdf07;
  border-radius: 50%;
}

.pp-contact-card {
  background: #303e5f;
  color: white;
}

.pp-contact-card .pp-section-title {
  color: white;
}

.pp-contact-card .pp-section-title:after {
  background: #ffdf07;
}

.pp-contact-card .pp-description {
  color: rgba(255,255,255,0.8);
}

.pp-email-link {
  color: #ffdf07;
  text-decoration: none;
  font-weight: 600;
}

.pp-email-link:hover {
  text-decoration: underline;
}

.pp-agreement-text {
  font-style: italic;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pp-main-title {
    font-size: 2rem;
  }
  
  .pp-section-card {
    padding: 20px;
  }
  
  .pp-section-title {
    font-size: 1.3rem;
  }
}
/* navbar service section dropdown css start */
#servicesDropdownWrapper:hover .dropdown-menu {
  display: block;
}
/* navbar service section dropdown css end */





/* 
LANDING PAGE CSS START */

/* LANDING PAGE END */