h1,h2,a,.nav-link,p,h3,h4,h5,h6,li,span,button{
    font-family: "Montserrat", sans-serif;
    
}
p{
  font-size: 14px;
}
a{
  text-decoration: none;
}

.fixed-top {
  background-color: rgb(32, 32, 32); /* Or any color you want */
  transition: all 0.3s ease;
}
.nav-link {
    color: #ffffff;
  font-size: 14px;
    text-decoration: none;
   padding-bottom: 0px;
    position: relative;
    transition: color 0.5s ease;
  }
  
  .nav-link1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 45px!important;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .nav-link1:hover {
    color: #ffffff;
  }
  
  .nav-link1:hover::after {
    opacity: 1;
    animation: shimmer111 2s linear infinite;
  }
  /*  */
 /* Initially hide the dropdown beautifully */
.navbar-nav .dropdown-menu {
  display: block; /* Important: always keep block for smoothness */
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95); /* little down and small */
  transition: all 0.5s ease;
  pointer-events: none;
  border-radius: 10px;
  /* background-color: rgb(131, 0, 0)!important; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* soft shadow */
  /* margin-left: 50px!important; */
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .custom-dropdown {
  display: block;
  margin-top: 0;
}

.custom-dropdown {
  display: none;
  background-color: #ffffff;
  padding-top: 15px;
  border-radius: 8px;
  position: absolute;
  top: 90%;
  left: 40px;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Dropdown arrow */
.custom-dropdown .dropdown-arrow {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}

/* Dropdown item styling */
.custom-dropdown .dropdown-item {
  color: #000000;
  padding: 10px 20px;
  transition: background 0.3s;
}

.custom-dropdown .dropdown-item:hover {
  background-color:rgb(204, 37, 45);
  color: #fff;
  border-radius: 4px;
}
/* On hover - show with animation */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}



  @keyframes shimmer111 {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  
/*  */
.banner-bg {
    background-image: url(../images/Home.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 100vh;
    position: relative;
    animation: zoomIn 5s ease-in-out infinite alternate;
  }
  
  @keyframes zoomIn {
    0% {
      background-size: 100% 100%;
    }
    100% {
      background-size: 105% 105%;
    }
  }
.banner-text{
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translate(-50%, -50%);
    color: white;

}
.banner-text h2{
    font-size: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
.banner-text h1{
    font-family: "Montserrat", sans-serif;
}
.banner-button{
    position: absolute;
    top: 70%;
    left: 18%;
    transform: translate(-50%, -50%);

}

@media screen and (min-width: 768px)  {
 .banner-button {
    position: absolute;
    top: 70%;
    left: 23%;
    transform: translate(-50%, -50%);
}
}

@media screen and (min-width: 1200px)  {
 .banner-button {
    position: absolute;
    top: 69%;
    left: 18%;
    transform: translate(-50%, -50%);
}
}


@media screen and (min-width: 2000px)  {
 .banner-button {
    position: absolute;
    top: 63%;
    left: 21%;
    transform: translate(-50%, -50%);
}
}


.btn-colour{
    background-color: rgb(253, 21, 40);
    color: white;
    font-family: "Montserrat", sans-serif;
    
}
.btn-colour:hover{
    background-color: rgb(28, 37, 68);
    color: white;
    font-family: "Montserrat", sans-serif;

}
#typewriter-text {
    display: inline-block;
    width: 350px; /* adjust based on longest word you'll use */
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
  }
  
  #typewriter-text::after {
    content: '|';
    animation: blink 0.7s infinite;
    color: #fd1528;
    font-weight: 700;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* start about section */

  .about-section{

    background-repeat: no-repeat;
    background-size: 100% 100%;
    
  }
  .about-title{
    font-size: 40px;
   
  }
  .about-text{
    font-size: 14px;
  }
.btn-danger1{
  background-color: rgb(212, 34, 49);
  color: white;
}
.btn-danger1:hover{
border: 2px solid rgb(212, 34, 49);
  color: rgb(0, 0, 0);
}
  /* end about section */

  /* start serices */
  .services-section{
    background-image: url(../images/Home\ 2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
     padding: 50px 0px;

  }
  .services-card{
    background-color: rgba(188, 28, 39, 0);
    border-radius: 10px;
    padding: 30px;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
   height: 180px;
    /* border: 1px solid rgb(255, 255, 255); */
  }
  .card-img-top{
    width: 60px;
    height: 60px;
  }
  .services-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(218, 0, 45, 0.7);
    
  }
  
  .services-card img {
    transition: transform 0.3s ease;
  }
  
  .services-card:hover img {
    transform: scale(1.1) rotate(3deg);
  }
  
  .services-card .card-title {
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .services-card:hover .card-title {
    color: #da002d; /* Brand red */
  }
  .card-title{
    margin: 0px!important;
  }
  /* end servives */

  /* start section */
  .insight-section {
    background-color: #0d0d0d;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .step {
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  
  .icon-ring,
  .icon-sparkle,
  .icon-circle {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  
  
  .arrow-bg {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 90%;
    max-width: 1200px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
  }
  
  /* Animated Icons */
  .icon-ring,
  .icon-sparkle,
  .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    position: relative;
  }
  
  .icon-ring::before,
  .icon-sparkle::before,
  .icon-circle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px dashed white;
    animation: spin 4s linear infinite;
    opacity: 0.7;
  }
  
  /* Sparkle */
  .icon-sparkle::before {
    border-style: dotted;
  }
  
  /* Solid Circle */
  .icon-circle::before {
    border: 2px solid white;
  }
  
  /* Spin Animation */
  @keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

/* end section */

/* start section counter */

.business-growth-section {
  background: linear-gradient(to right, #fff, #fdf2f3);
  padding: 80px 0;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}

.container1 {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.left {
  flex: 1 1 45%;
}

.left h1 {
  font-size: 40px;
  margin: 10px 0;
}

.left p {
  /* font-size: 16px; */
  line-height: 1.8;
  margin-top: 20px;
}

.right {
  flex: 1 1 45%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.counter-box {
  width: 45%;
}

.counter-box h2 {
  color: rgb(218, 0, 45);
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: 600;
}

.counter-box p {
  color: rgb(218, 0, 45);
  font-size: 14px;
  font-weight: 500;
}
/* end section */

/* start work section */
.work-text{
  font-weight: 600;
  font-size: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-grid .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.gallery-grid a:hover .overlay {
  opacity: 1;
}
/* testimonial section */
.testimonial-section {
background-image: url(../images/Home\ 3.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
  padding: 50px 0;
}
.gtco-testimonials {
  position: relative;
  margin-top: 30px;

 

  .owl-stage-outer {
    padding: 30px 0;
  }

  .owl-nav {
    display: none;
  }

  .owl-dots {
    text-align: center;

    span {
      position: relative;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      display: block;
      background: #fff;
      border: 2px solid #01b0f8;
      margin: 0 5px;
    }

    .active {
      box-shadow: none;

      span {
        background: #01b0f8;
        box-shadow: none;
        height: 12px;
        width: 12px;
        margin-bottom: -1px;
      }
    }
  }

  .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;

    .card-img-top {
      max-width: 100px;
      border-radius: 50%;
      margin: 15px auto 0;
      box-shadow: 0 8px 20px -4px #95abbb;
      width: 100px;
      height: 100px;
    }

    .testimonial-heading {
      color: #01b0f8;
      font-size: 21px;
      line-height: 1.3;

    }

   
  }

  .active {
    opacity: 0.5;
    transition: all 0.3s;
  }

  .center {
    opacity: 1;

    h5 {
      font-size: 24px;

      span {
        font-size: 20px;
      }
    }

    .card-img-top {
      max-width: 100%;
      height: 120px;
      width: 120px;
    }
  }
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}

.owl-carousel {
  .owl-nav button {
    &.owl-next, &.owl-prev {
      outline: 0;
    }
  }

  button.owl-dot {
    outline: 0;
  }
}


/* clients logo */
.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
}

.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 45s slide infinite linear;
}

.logos-slide img {
  width: 220px;
  height: 110px;
  margin: 0 20px;
}


@keyframes slide {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}
.texture{
  background-image: url(../images/contactbg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;

}
.bg-extra-dark-gray{
  background-color: #3c3b3b9a;

}
/* end section */
.client-bg{
      background-color: #ffffff;
}
.filter{
  filter: grayscale(100%);
}

.filter:hover{
  filter: grayscale(0%);
}
/* footer section */
.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: rgb(140, 6, 24);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: rgb(237, 12, 22);
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: rgb(237, 12, 22);
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: rgb(237, 12, 22);
    padding: 13px 20px;
    border: 1px solid rgb(237, 12, 22);
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: rgb(237, 12, 22);
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: rgb(237, 12, 22);
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
.single-cta {
  display: flex;
  align-items: center;
}

.single-cta i {
  font-size: 30px;
  margin-right: 15px;
  color: rgb(237, 12, 22); /* Optional: adjust color */
}

.cta-text h4 {
  margin: 0;
  font-size: 18px;
}

.cta-text span {
  font-size: 14px;
  color: #878787;
}

/*/////////////////// about section//////////////////// */
.banner-about{
  background-image: url(../images/About\ us.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 70vh;
   
}
.vision-mission-section {
  background-image: url(../images/vision\ mesion.png);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background-repeat: initial;
  background-size: 100% 100%;
  margin-top: -70px;
}

.vision-mission-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}

.vision-mission-section p, 
.vision-mission-section ol {
  font-size: 14px;
  line-height: 1.7;
}

.vision-mission-section ol {
  padding-left: 20px;
  margin-top: 20px;
}

.vision-mission-section li {
  margin-bottom: 15px;
}

.image-section img {
  max-width: 100%;
  height: auto;
  animation: rocketLaunch 2s ease-out forwards;
}

/* Optional rocket lift effect */
@keyframes rocketLaunch {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .vision-mission-section {
      text-align: left;
  }
  .vision-mission-section h2 {
      justify-content: left;
      font-size: 30px;
  }
}

/* website page */
.banner-web{
  background-image: url(../images/Web\ 1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 70vh;
   
}
.banner-webtext h2{
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
}
.web-maintext{
  background: linear-gradient(to right, rgb(255, 35, 35), white, rgb(255, 60, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold; /* optional for better visibility */
  font-size: 35px;
}
.web-design-section{
  background-image: url(../images/Web\ 2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    height: 115vh;
 
}
.web-card{
  background-color: rgba(188, 28, 39, 0);
  border-radius: 10px;
  padding: 25px;
 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
 height: 150px;
  /* border: 1px solid rgb(255, 255, 255); */
}
.card-img-top{
  width: 60px;
  height: 60px;
}


.web-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(218, 218, 218, 0.7);
  
}
.card-title1{
  font-size: 16px;
}
.webservices-text{

  font-weight: 400;
  margin-bottom: 20px;
}



.headline {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.4;
}

.gradient-text {
  background: linear-gradient(to right, #d31e25, #290000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button {
  margin-top: 20px;
  padding: 10px 24px;
  border: 2px solid #000;
  border-radius: 25px;
  background: transparent;
 
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #000;
  color: #fff;
}
.button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
/* end */

/* career page */
.banner-career{
  background-image: url(../images/career1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 60vh;
}
.banner-careertext h2{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 500;
  font-size: 35px;
}
.banner-careertext p{
  position: absolute;
  top: 74%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.career-maintext{
  background: linear-gradient(to right, rgb(240, 144, 0), rgb(253, 201, 123), rgb(255, 81, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold; /* optional for better visibility */
  font-size: 40px;
}
.c1 {
  border: 1px solid black;
  border-radius: 30px;
  padding: 10px;
}
/* end */

/* start digital marketing page */
.banner-digital{
  background-image: url(../images/D\ 2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 70vh;

}
.Digital-section{
  background-image: url(../images/D3.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
   
}

/* contact us page */
.contact-subtext{

    position: absolute;
    top: 58%;
    left: 17%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
}
.contact-form {
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  width: 30%;
  padding: 12px;
  margin: 0 auto;
  background-color: #d42020;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: rgb(250, 77, 77);
}
.headline-contact{

    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;

}
/* end */
/* start blog page */
.blog-text{
  background: linear-gradient(to right, rgb(255, 255, 255), white, rgb(255, 255, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 35px;
}
.banner-blog{
  background-image: url(../images/blog.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 70vh;
}
.blogs-title {
  font-size: 50px;
  position: absolute;
  top: 35%;
  left: 12%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
}
.carousel-item .card {
  border: none;
}
.carousel-control-prev, .carousel-control-next {
  background: rgba(0, 0, 0, 0.4);
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.bg-blog {
  background-color: rgb(6, 10, 12)!important;

}
.rounded-start{
  border-radius: 20px!important;
}
/* end  */

/* start graphic page */
.banner-graphic{
  background-image: url(../images/G2.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 70vh;
}
.graphic-design-section{
  background-image: url(../images/G1.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 80vh;
}
/* end */
/* expo stall page */
.banner-expo{
  background-image: url(../images/Expo\ 2.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;

  height: 70vh;
}
.expo-design-section{
  background-image: url(../images/Expo\ 1.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 80vh;
}

/* contact page */
 
.banner-contact{
  background-image: url(../images/Call.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 70vh;
}
/*/////////////////// media query///////////////////////// */

@media (min-width: 320px) and (max-width: 767px) {
  .banner-mob-bg {
    background-image: url(../images/Mobile\ 1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 60vh;
    position: relative;
    margin-top: 50px;
    animation: zoomIn 4s ease-in-out infinite alternate;
}
.banner-text h2 {
  font-size: 27px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 40px;
}
.banner-text {
  position: absolute;
  top: 45%;
  left: 36%;
  
  color: white;
}
.about-title {
  font-size: 28px;
  padding-top: 20px!important;
}
.services-section {
  background-image: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 0px;
  background-color: rgb(198, 32, 42);
}
.insight-section {
  background-color: #0d0d0d;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.business-growth-section {
  background: linear-gradient(to right, #fff, #fdf2f3);
  padding: 40px 0;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
}
/* about page */
.banner-mob-about{
 
    background-image: url(../images/Mobile\ 2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 60vh;
    position: relative;
    margin-top: 50px;

}
.vision-mission-section {
  background-image: url(../images/VISION\ MISSION\ MOB.jpg);
  color: #fff;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  background-repeat: initial;
  background-size: 100% 100%;
  margin-top: -10px;
  ;
}
.vision-mission-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex
;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}
.vision-mission-section h2 {
  justify-content: left;
}
.vision-mission-section p{
  text-align: left;
}
.vision-mission-section ol {
  text-align: left;

}
/* web services */
.webservices-text {
  font-size: 27px;
  font-weight: 400;
  margin-bottom: 20px;
}
.banner-webtext h2 {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 37%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
}
.web-maintext {
  background: linear-gradient(to right, rgb(255, 35, 35), white, rgb(255, 60, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 30px;
}
.card-title1 {
  font-size: 10px;
}
.card-img-top {
  width: 60px;
  height: 60px;
}
.web-card {
  background-color: rgba(188, 28, 39, 0);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 150px;
  /* border: 1px solid rgb(255, 255, 255); */
}
.web-design-section {
  background-image: none;
  background-color: rgb(43, 42, 41);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 170vh;
}
.headline {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}
.banner-web {
  background-image: url(../images/Mobile\ 3.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 60vh;
  position: relative;
  margin-top: 50px;
  animation: zoomIn 4s ease-in-out infinite alternate;
}
/* digital marketing */
.banner-mob-digital {
  background-image: url(../images/Mobile\ 4.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 60vh;
  position: relative;
  margin-top: 50px;
}
.banner-webtext-mob h2{
  font-size: 16px;
  position: absolute;
  top: 40%;
  left: 38%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
}
.Digital-section {
  background-image: url(../images/digital\ mob.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
/* graphic design */
.banner-mob-graphic{
  background-image: url(../images/Mobile\ 5.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 60vh;
  position: relative;
  margin-top: 50px;
}
.banner-webtext-graphic h2{
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
}
.graphic-design-section {
  background-image: url(../images/graphic\ services.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 135vh;
}
/* exop stall */
.banner-mob-expo{
  background-image: url(../images/Mobile\ 6.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 60vh;
  position: relative;
  margin-top: 50px;

}

.expo-design-section {
  background-image: url(../images/expo\ mob.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 135vh;
}
/* career */
.banner-careertext h2 {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 500;
    font-size: 14px;
    width: 85%;
}
.career-maintext {
  background: linear-gradient(to right, rgb(240, 144, 0), rgb(253, 201, 123), rgb(255, 81, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 25px;
}
.banner-careertext p {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  width: 85%;
}
.job-submit{
  margin-top: 20px;
}
.c1 {
  border: 1px solid rgb(92, 92, 92);
  border-radius: 30px;
  padding: 30px;
}
/* contact page */
.banner-mob-contact{
  background-image: url(../images/Mobile\ 7.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 60vh;
  margin-top: 70px;
}
.banner-contacttext{
  font-size: 20px;
        position: absolute;
        top: 50%;
        left: 38%;
        transform: translate(-50%, -50%);
        color: white;
        font-weight: 600;
}
.contact-subtext {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  width: 100%;
}
.contact-form button {
  width: 70%;
  padding: 12px;
  margin: 0 auto;
  background-color: #d42020;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form {
  background: #ffffff;
  padding: 20px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
}
.headline-contact {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}
/* blog page */
.banner-mob-blog{
  background-image: url(../images/Mobile\ 8.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 60vh;
  margin-top: 30px;
}
.blogs-title {
  font-size: 30px;
  position: absolute;
  top: 24%;
  left: 18%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
}
.blog-text {
  background: linear-gradient(to right, rgb(255, 255, 255), white, rgb(255, 255, 255));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 20px;
}
}
/*///////////////////////////////////////////////// tablet/////////////////////////////////////////////////// */
@media (min-width: 768px) and (max-width: 1024px) {
  .banner-mob-bg {
    background-image: url(../images/Home.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 90vh;
    position: relative;
    animation: zoomIn 4s ease-in-out infinite alternate;
   
}
.banner-text h2 {
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 40px;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 36%;
  color: white;
}


.about-title {
    font-size: 25px;
}

.about-text {
    font-size: 11px;
}

.about-title {
    margin-top: 22px;
}

.services-section {
 background-image: none;
 background-color: #CC252D;
}

.footer-social-icon{
  margin-bottom: 16px;
}

.cta-text {
    padding-left: 0px;
}

.business-growth-section {
    padding: 40px 0;
}


/* about page */
.banner-mob-about{
  background-image: url(../images/About\ us.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 80vh;
  margin-top: 20px;
  position: relative;
}

.vision-mission-section {
    padding: 30px 0;
    margin-top: -90px;
}

/*  Web Page  */

.banner-webtext h2 {
    font-size: 25px;
    left: 35%;
}

.webservices-text {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.web-design-section {
    height: 150vh;
}

.web-design-section {
    background-image:none;
    background-color: #2B2A29;
}

.headline {
    font-size: 35px;
}

.banner-web {
    height: 55vh;
    margin-top: 100px;
}
    .banner-mob-digital {
        background-image: url(../images/D\ 2.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 60vh;
        position: relative;
        margin-top: 50px;
    }

    .banner-webtext-mob{
      padding-top: 172px;
    }

    .banner-webtext-mob h2{
      font-size: 20px;
      padding-left: 10px;
      color: white;
    }

    .banner-webtext-mob span{
      font-size: 30px;
    }

    .Digital-section {
    background-image: none;
    background-color: #2F3948;
}

.web-card {
    height: 170px;
}

   /* Graphic Design Page  */

   .banner-mob-graphic {
        background-image: url(../images/G2.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 70vh;
        position: relative;
        margin-top: 50px;
    }

    .banner-webtext-graphic h2{
        padding-top: 197px;
        padding-left: 35px;
    }

    .web-maintext {
      font-size: 45px;
    }

    .graphic-design-section {
    background-image: none;
    background-color: #732480;
    height: 97vh;
}

    /* ExpoStall Page   */

        .banner-mob-expo {
        background-image: url(../images/Expo\ 2.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        height: 70vh;
        position: relative;
        margin-top: 50px;
    }

    .banner-webtext-graphic h2{
      color: white;
      font-size: 20px;
    }


.expo-design-section {
  background-image: none;
    background-color: #26074D;
    height: 80vh;
}

.banner-mob-blog{
  background-image: url(../images/blog.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 80vh;
  margin-top: 30px;
}

/* contact page */
.banner-mob-contact{
  background-image: url(../images/Call.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 70vh;
  margin-top: 30px;
}
.banner-contacttext h2{
    position: absolute;
    top: 52%;
    left: 36%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
}

.contact-subtext {
    position: absolute;
    top: 60%;
    left: 26%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
}


/* career page */

.banner-career{
  background-image: url(../images/career1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 80vh;
}
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .banner-career{
  background-image: url(../images/career1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 90vh;
}
}

.testimonial-card{
  height: 300px;
}
.testimonial-heading{
  margin-top: 20px;
}