/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
 
 
  
}
html{
  scroll-behavior: smooth;
}
:root{
  --background-dark:#09162F;
  --primary-blue:#1E4996;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar .logo {
  font-weight: bold;
}
.navbar ul {
  display: flex;
  gap: 25px;
}
.navbar ul li {
  list-style: none;
}
.btn-call {
  background-color: #0a2c61;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top:60px;
  text-align: center;
  padding: 60px 20px 20px ;
  position: relative;
  z-index: 1;
  min-height: 80vh;
}

/* New hero content container with appropriate z-index */
.hero-content {
  position: relative;
  z-index: 2; /* Above floating logos (z-index: 1) but below header (z-index: 3) */
 
  margin: 0 auto;
  font-family: 'outfit';
}

.hero h1 {
  font-size: 70px;
  line-height: 78.1px;
  letter-spacing: -1.56px;
  margin: 20px 0;
  font-family: 'Outfit';
  font-weight: 550;
  opacity: 0;
            transform: translateY(30px) scale(0.9);
            animation: heroTextReveal 1s ease-out forwards;
            animation-delay: 0.3s;
}
.hero p {
  max-width: 600px;
  margin: 30px auto;
  font-size: 20px;
  color:var(--background-dark);
  font-family: 'Outfit';
  opacity: 0;
            transform: translateY(30px) scale(0.9);
            animation: heroTextReveal 1s ease-out forwards;
            animation-delay: 0.8s;
}
.mobile-logos {
    transform: translateY(30px) scale(0.9);
            animation: heroTextReveal 1s ease-out forwards;
            animation-delay: 1s;
            opacity: 0;
            

}
.btn-primary {
  background-color:#183A78;
  color: #fff;
  padding: 16px 28px;
  border: none;
  border-radius: 25px;
  font-size: 20px;
 margin: 30px 0;
 cursor: pointer;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            animation: heroTextReveal 1s ease-out forwards;
            animation-delay: 1.3s;
            transition: all 0.3s ease;
}
 .btn-primary:hover {
           
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0, 0, 0.3);
        }
         @keyframes heroTextReveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

/* Floating logos */
/* Container for positioning context */
.floating-logos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevent interaction */
  z-index: 1; /* Behind hero content */
}

/* Style for the div containing each logo+text */
.logo-float {
  position: absolute;
  background-color: #fff;
  padding: 15px 20px; /* Adjusted horizontal padding */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap is removed as text span is gone */
  white-space: nowrap;
  width: 250px;
  
  pointer-events: auto;
            transition: transform 0.3s ease;
            opacity: 0;
            transform: scale(0.3) rotate(-30deg);
}

/* Hover state - Apply bounce animation */
 
.logo-float img {
  overflow: visible;
  height: 50px;
  width: 100%;
  flex-shrink: 0;
}


/* Redundant span rule removed */


/* Positioning and specific overrides */
.logo-float.top-left { 
  top: 6%; 
  left: 4%; 
  transform: rotate(-5deg); 
  animation: logoEntrance1 1s ease-out forwards;
            animation-delay: 0.6s;
}

.logo-float.mid-left { 
  top: 60%; 
  left: 4%; 
  transform: rotate(-10deg); 
    animation: logoEntrance2 1s ease-out forwards;
            animation-delay: 1.8s; /* 2.5s gap after top-left */
}
.logo-float.top-right { 
  top: 6%; 
  right:6%; 
  transform: rotate(5deg);
    animation: logoEntrance3 1s ease-out forwards;
            animation-delay: 1.2s;
}
.logo-float.mid-right { 
  top: 60%; 
  right: 6%; 
  transform: rotate(7deg); 
    animation: logoEntrance4 1s ease-out forwards;
            animation-delay: 2.1s; /* 2.5s gap after mid-left */
            overflow: hidden;
}
 @keyframes logoEntrance1 {
            0% {
                opacity: 0;
                transform: translateX(-100px) translateY(-50px) scale(0.3) rotate(-30deg);
            }
            60% {
                opacity: 0.8;
                transform: translateX(10px) translateY(-10px) scale(1.1) rotate(-8deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotate(-5deg);
            }
        }

        @keyframes logoEntrance2 {
            0% {
                opacity: 0;
                transform: translateX(-100px) translateY(50px) scale(0.3) rotate(-40deg);
            }
            60% {
                opacity: 0.8;
                transform: translateX(10px) translateY(10px) scale(1.1) rotate(-15deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotate(-10deg);
            }
        }

        @keyframes logoEntrance3 {
            0% {
                opacity: 0;
                transform: translateX(100px) translateY(-50px) scale(0.3) rotate(30deg);
            }
            60% {
                opacity: 0.8;
                transform: translateX(-10px) translateY(-10px) scale(1.1) rotate(8deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotate(5deg);
            }
        }

        @keyframes logoEntrance4 {
            0% {
                opacity: 0;
                transform: translateX(100px) translateY(50px) scale(0.3) rotate(35deg);
            }
            60% {
                opacity: 0.8;
                transform: translateX(-10px) translateY(10px) scale(1.1) rotate(10deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1) rotate(7deg);
            }
        }


/* Specific styles for WhatsApp and Meta */


.logo-float.whatsapp i {
  margin-left: 7px;
}

.logo-float.meta {
   /* Style for Meta if different, e.g., padding or content */
   padding: 15px; /* Example: make it more square */
}
.logo-float.meta img {
   height: 28px; /* Example: slightly larger logo */
}

/* Visual graph mock */
.visual-graph {
  margin-top: 100px;
  display: flex;
 justify-content: space-between;
  align-items: center;
 
  
}
.center-logo {
  width: 80px;
}

/* Footer note */
.footer-note {
  font-size: 0.9rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}


*{
  margin: 0;
  padding: 0;
}

header{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  position: relative;

  background: transparent;
}
.logo{
  display:flex ;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease; /* Add transition */
  cursor: pointer;
}
.logo:hover {
  transform: translateY(-5px); /* Lift on hover */
}
.logo img{
  height: 65px;
}
nav{
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:8px 22px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  background-color: transparent;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  position: fixed;
  top: 25px;
  z-index: 3;
}

.header-links{
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-left: 50px;
}
.header-links .nav-links{
  text-decoration: none;
  padding: 10px 13px;
  font-family: 'Inter';
  color: #222124;
  font-size: 16px;
    -webkit-tap-highlight-color: transparent; /* Removes gray tap highlight on mobile */
  -webkit-focus-ring-color: transparent;    /* Removes blue outline on WebKit */
}
.header-links .nav-links:hover{
  color: var(--primary-blue);
}
.nav-links select{
  border: none;
color: #222124;
font-size: 16px;
font-family: 'Inter';
padding-right: 8px;
background: transparent;
outline: none;
cursor: pointer;
  -webkit-tap-highlight-color: transparent; /* Removes gray tap highlight on mobile */
  -webkit-focus-ring-color: transparent;    /* Removes blue outline on WebKit */
}
.book-call{
background-color: var(--primary-blue);
color: white;
font-size: 16px;
font-family: 'Inter';
text-decoration: none;
padding: 8px 18px;
border-radius: 28px;
  -webkit-tap-highlight-color: transparent; /* Removes gray tap highlight on mobile */
  -webkit-focus-ring-color: transparent;    /* Removes blue outline on WebKit */
}
.book-call:hover{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.mobile-toggle{
  font-size: 20px;
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background-color: rgba(255, 255,255,0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -2;
  padding: 80px 30px 30px;
  transition: all 0.4s ease;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}


.mobile-menu.active {
  left: 0;
  z-index: 99;
}

.mobile-menu ul {
  list-style: none;
  position: relative;
}

.mobile-menu li {
 
  margin-bottom: 20px;
}

.menu-link {
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 10px;
 color: var(--background-dark);
  font-family: 'Inter';
 border-radius: 10px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.menu-link select{
  font-size: 20px;
  font-family: 'Inter';
  
 color: var(--background-dark);
 border: none;
 outline: none;
 padding-right: 5px;
 background: transparent;
}
.menu-link  i{
padding-right:8px;
}
.menu-list li:nth-child(3) .menu-link i {
  padding-right: 2px !important;
}

.menu-link:active,.menu-link:focus {
  background-color: var(--primary-blue);
  
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
 
}
.menu-link:active .menu-link select,.menu-link:focus .menu-link select,.menu-link:hover .menu-link select {
 background-color: var(--primary-blue);
  
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
 
}


/* Animate each link with delay when menu is active */
.mobile-menu.active .menu-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu .menu-list li:nth-child(1) .menu-link{
  margin-top: 20px;
}

.mobile-menu.active .menu-list li:nth-child(1) .menu-link {
  transition-delay: 0.1s;
  
}
.mobile-menu.active .menu-list li:nth-child(2) .menu-link {
  transition-delay: 0.3s;
}
.mobile-menu.active .menu-list li:nth-child(3) .menu-link {
  transition-delay: 0.5s;
}
.mobile-menu.active .menu-list li:nth-child(4) .menu-link {
  transition-delay: 0.7s;
}
.mobile-menu.active .menu-list li:nth-child(5) .menu-link {
  transition-delay: 0.9s;
}
.mobile-menu.active .menu-list li:nth-child(6) .menu-link {
  transition-delay: 1.1s;
}
.mobile-menu.active .menu-list li:nth-child(3) .menu-link:focus{
color: white;
}
.scroller {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 10s linear infinite;
  gap: 50px;
  align-items: center;
}

.logo-track img {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 8px #00ffe0);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Keyframes for Bounce Animation */
/* @keyframes bounce {
  0% {
    transform:rotate(60deg); /* Start lifted (matches hover state) */
  /* }
  100% {
    transform:rotate(-60deg); /* Bounce up slightly more */
  /* }
} */  

@media(max-width:1350px){
 .header-links .nav-links {
      font-size: 15px;
  }
  .nav-links select{
      font-size: 15px;
  }
  .book-call{
      font-size: 15px;
  }
}
@media(max-width:1024px){
 .header-links .nav-links {
      
      padding: 10px 11px;
  }
 .header-links{
  margin-left: 0;
 }
  
}
@media(max-width:945px){
  .logo img{
    height: 60px;
  }
}
@media(max-width:900px){
  .header-links .nav-links{
      padding: 10px ;
      font-size: 14px;
  }
  .nav-links select{
      font-size: 14px;
  }
  .book-call{
      font-size: 14px;
  }
  .logo img{
    height: 50px;
  }
  nav{
    padding: 8px 18px;
  }
}
@media(max-width:800px){
  .header-links{
      display: none;
  }
  .book-call{
      display: none;
  }
  .mobile-toggle{
      display: contents;
  }
  nav{
      width: 85%;
  }
}
@media(max-width:575px){
  nav{
      padding: 12px 16px;
  }
  .menu-link{
    font-size: 18px;
  }
  .menu-link select{
    font-size: 18px;
  }
}
@media(max-width:425px){
  nav{
      padding:10px 14px ;
  }
}

.logo-float i {
  opacity: 70%;
}
.google-logo{
  object-fit: cover;
  transform: rotate(5deg);
  
 
}
.drive-logo{
  object-fit:cover;
  transform: rotate(-10deg);
  
}
.whatsapp-logo{
  object-fit: cover;
  transform: rotate(0deg);
 
}


.meta-logo{
  object-fit:cover;
  transform: rotate(24deg);
  
}
.teledigital-square{
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 97, 255, 0.4); /* Blue shadow */
  object-fit: cover;
  margin-top: -10px;
  margin-left: 120px;
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease; /* Add transition */
}

.teledigital-square:hover {
  transform: translateY(-5px); /* Lift on hover */
}

.background-hero{
  position: absolute;
  top: 0;
  left: 0;
 height:80vh;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  
}
.left-top{
  left: -6%;
 position: absolute;
 top: 15%;
 opacity:0.1;
  animation: floatLeft 6s ease-in-out infinite alternate;

}

/* .left-down{
 position: absolute;
 top: 50%;
 left: -13%;
 display: none;
 
} */
.right-top{
  position: absolute;
  right: -4%;
  top: -8%;
  opacity:0.1;
   animation: floatRight 5s ease-in-out infinite alternate;
}
 @keyframes floatLeft {
            0% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            100% {
                transform: translateY(-20px) translateX(10px) rotate(2deg);
            }
        }

        @keyframes floatRight {
            0% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            100% {
                transform: translateY(15px) translateX(-10px) rotate(-2deg);
            }
        }

/* .right-down{
  position: absolute;
  right: -12%;
  top: 60%;  
  z-index: -3;
  display: none;
 
} */

/* For demonstration purpose - placeholder images */


.hero-bottom{
  margin: 50px;
}
.trusted-by {
  padding: 2rem 55px;
  margin: 0 auto;
 padding-right: 65px;
  display: flex;
  justify-content: center;

flex-direction: column;  align-items: center;
  position: relative;
  overflow: hidden;
}

.trusted-by-header {
 
  
  position: relative;
  z-index: 2;
  font-family: 'Outfit';
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items:center;
}

.trusted-by-header h3 {
  font-size: 24px;
  color: #333;
  display: flex;
 
  align-items: center;
  gap: 0.5rem;
  
}

.trusted-by-header h3 img {
  height: 24px;
}

.trusted-by-header h2 {
  font-size:32px;
  color: var(--primary-blue);
  font-weight: bold;
  
}

/* Enhanced blur effect at the edge of the header */


.marquee-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.marquee {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  padding: 1rem 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 80px;
}

.marquee-item img {
  height: 100px;
  
}
.marquee-item img.small-img{
  height: 120px;
}

/* Placeholder styles for preview */
.logo-jeevee {
  color: #999;
  font-weight: bold;
  font-size: 24px;
}

.logo-khalti {
  background-color: #563d82;
  color: white;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: bold;
}

.logo-dishhome {
  color: red;
  font-weight: bold;
  font-size: 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1800px * 3)); /* Adjust based on total width */
  }
}
.global-platforms{
  padding:50px ;
  background-color: #FCFCFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.platform-heading
{color: var(--background-dark);
  font-family: 'Outfit';
  font-size: 46px;
  text-align: center;
  margin: 30px 0;
z-index: 2;
}
.platform-images{
  display: flex;
 gap: 150px;
  align-items: center;
  padding: 40px 0;

}
.platform-images img{
  width: 300px;
}
.platform-para{
  color: var(--background-dark);
  font-size: 24px;
  line-height: 38px;
  font-family: 'Outfit';
  text-align: center;
  padding: 30px  0 30px ;
  max-width: 890px;
  z-index: 2;
}
.background-icons{
  position: absolute;
 
}
.background-icons:nth-of-type(1){
  bottom: 2%;
  left: 20%;
}
.background-icons:nth-of-type(2){
  bottom: 8%;
  left: 14%;
}
.background-icons:nth-of-type(3){
  bottom: 15%;
  left: 3%;
}
.background-icons:nth-of-type(4){
top:60%;
  left: 8%;
}
.background-icons:nth-of-type(5){
  top:48%;
    left: 5%;
  }
  .background-icons:nth-of-type(6){
    top:27%;
      left: 0%;
    }
    .background-icons:nth-of-type(7){
      top:19%;
        left: 6%;
      }
      .background-icons:nth-of-type(8){
        top:22%;
          left: 15%;
        }
        .background-icons:nth-of-type(9){
          top:12%;
            left: 19%;
          }
          .background-icons:nth-of-type(10){
            top:2%;
              left: 3%;
            }
            .background-icons:nth-of-type(11){
              top:15%;
               right: 20%;
              }
              .background-icons:nth-of-type(12){
                top:5%;
                 right: 5%;
                }
                .background-icons:nth-of-type(13){
                  top:30%;
                   right: 15%;
                  }
                  .background-icons:nth-of-type(14){
                    top:23%;
                     right: 5%;
                    }
                    .background-icons:nth-of-type(15){
                      top:38%;
                       right: 0%;
                      }
                      .background-icons:nth-of-type(16){
                        top:53%;
                         right: 5%;
                        }
                        .background-icons:nth-of-type(17){
                          top:68%;
                           right: 15%;
                          }
                          .background-icons:nth-of-type(18){
                            top:77%;
                             right: 8%;
                            }
                            .background-icons:nth-of-type(19){
                              top:85%;
                               right: 20%;
                              }
                              .background-icons:nth-of-type(20){
                                bottom: 2%;
                                 right: 8%;
                                }
          #mobile{
            display: none;
           
          }  
          .who-are-we{
            margin-top: 40px;
            padding:20px 0 ;
            flex-direction: column;
            display: flex;
            gap: 20px;
           
          }   
          .image{
            display: flex;
            gap: 20px;
            align-items: center;
            width: 47%;
          }
          .image-description{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-right: 150px;
          }
          .image-text{
            width:42%;
          }
          .image-text h3{
color: var(--background-dark);
font-size: 46px;
font-family: 'Outfit';
margin: 10px 0;

          }
          .image-text p{
            font-size: 21px;
            line-height: 38px;
            color: #494949;
            font-family: 'outfit';
          }
          .description{
            background-image: url(assests/Background-svg/who-we-are-bg-img.svg);
            background-position:center;
            background-size: cover;
            background-repeat: no-repeat;
            
            padding: 50px 0 170px;
            display: flex;
            flex-direction: column;
            align-items: center;
          }     
          .description h4{
            color: var(--primary-blue);
            font-family: 'outfit';
            font-size: 40px;
            text-align: center;
            margin: 10px 0;
          }
          .description p{
            color: #494949;
            font-family: 'Outfit'
            ;
            text-align: center;
            width: 68%;

            font-size: 24px;
            line-height:38px ;
          }
          .container {
          
            margin: 50px auto;
          
          }
      
          /* Method 1: Using clip-path with more pronounced slant */
         
      
          /* More extreme version */
          .very-slanted-top {
            position: relative;
            background: linear-gradient(135deg, #213f99 , #df1c3a);
            padding: 500px 0 200px;
            color: white;
            text-align: center;
            /* Even more dramatic slant */
            clip-path: polygon(0 0, 100% 120px, 100% 100%, 0 100%);
            margin-bottom: 50px;
            transition: background 0.3s ease-out;
            
          }
          .gradient-section
          {
            position: relative;
            padding: 100px 0 0 ;
          }
      .cards{
        position: absolute;
       top: 0%;
        z-index: 2;
        display: flex;
        gap: 20px;
       width: 100%;
        width: auto;
        padding: 20px 0;
        justify-content: center;
      }
      .cards div{
        background-color:#fcfcfc;

        
      
      }
      .stereotypes-card{
       width: 45%;
        padding: 15px 20px;
        border-radius:10px ;
      }
      .stereotypes-card h4{
        background: linear-gradient(90deg, #213F99 , #DF1C3A );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 40px;
        font-family: 'Outfit';
      }
      .stereotypes-card p{
        color: #181818;
        font-size: 20px;
        font-family: 'outfit';
        margin-top: 5px;
      }
      .stereotypes-card img{
      width: 100%;
      }
      .process-card{
        width: 30%;
        padding: 15px 20px;
        border-radius:10px 
      }
      .very-slanted-top h1{
        color:#F0E9E9;
        font-size:68px;
        font-family: 'outfit';
      }
      #get-btn{
        color: var(--background-dark);
        border: 1px solid  var(--primary-blue);
        border-radius: 25px;
        padding: 12px 18px ;
        background-color: transparent;
        font-size:18px;
        cursor: pointer;
        font-family: 'Inter';
        margin-top: 20px;
      }

         .process-card h4{
          color: var(--background-dark);
          font-size: 40px;
          font-family: 'Outfit';
         }
         .process-card p{
          font-size: 22px;
          font-family: 'outfit';
          color: #494949;
          margin-top: 5px;
         }
         .bold-text{
          font-size: 20px;
          font-family: 'outfit';
          color: #181818;

         }
      .image-icons{
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
      height: 260px;
    
      }
          .partner-boxes {
            display: flex;
            justify-content: center;
            gap: 35px;
          
           
           position: absolute;
           top: -80%;
           
          
          }
      
          .partner-box {
           
            box-shadow: 0px 48.41px 95.61px 0px rgba(180, 188, 221, 0.5);
            border-radius: 8px;
           
            transition:transfom 1s ease-in-out;
            z-index: 2;
            
            
          }
          .partner-box:hover{
            transform: translateY(-10px);
           
            
          }
          .partner-box img{
            width: 100%;
            
            
          }
          .icon-div{
            position:relative;
            width: 100%;
           
            

          }
          .icon-div img{
            height: 60px;
          }
          .icon{
            position: absolute;
          }
          .icon:nth-of-type(1)
          {
                left: 0%;
          }
          .icon:nth-of-type(2){
            right: 0;
          }
          .icon:nth-of-type(3){
            right: 8%;
            bottom: 0;
          }
          .icon:nth-of-type(4){
            right: 25%;
            bottom: 10%;
          }
          .icon:nth-of-type(5){
            left: 35%;
            bottom: 25%;
          }
          .icon:nth-of-type(6){
            left: 50%;
            bottom: 30%;
          }
          .icon:nth-of-type(7){
            left: 20%;
            bottom:5%;
          }
          .icon:nth-of-type(8){
            left: 10%;
            bottom:25%;
          }
     
      
          h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
          }
          
      
          /* Controls to adjust slant */
          /* .controls {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
          }
       */
          .slider {
            width: 100%;
            margin: 10px 0;
          }
      
          .custom-slanted-top {
            position: relative;
            background: linear-gradient(135deg, #213f99 , #df1c3a);
            padding: 200px 30px 40px;
            color: white;
            text-align: center;
            /* This will be updated by JavaScript */
            clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
            margin-bottom: 50px;
          }
          .digital-space{
            padding: 20px 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 50px;
          }
          .unlock-heading{
            font-size: 46px;
            font-family: 'Outfit';
            color: var(--background-dark);
            text-align: center;
          }
          .unlock-para{
            font-size: 24px;
            color: var(--primary-blue);
            font-family: 'Outfit';
            max-width:75%;
            text-align: center;
           

          }
          .digitalspace-card{
            padding:10px 60px 0;
            display: flex;
            justify-content: space-between;
            border-radius: 20px;
            align-items: center;
            box-shadow: 0px 48.41px 95.61px rgba(180, 188, 221, 0.5);
             position: relative;
             width: 100%;
             overflow: hidden;
             
            
        }
        .green-image-left{
          position: absolute;
          left: 0;
          bottom: 0;

          
        }
        .green-image-right{
          position: absolute;
          right: -3px;
          bottom: 0;
          

        }
          .card-text{
            width: 45%;
            padding-bottom: 20px;
           
          }

          .blue{
            background-color: #4285F4;
          }
          .green{
            background-color: #0F9D58;
          }
          .card-image{
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: end;
          }
          .card-image img{
            width: 100%;
          }
          .card-text h4{
            font-size: 46px;
            color: var(--background-dark);
            font-family: 'outfit';
            margin: 10px 0;
          }
          .card-text p{
            font-family: 'outfit';
            font-size: 20px;
            line-height: 30px;
            color: #494949;
            margin-top: 20px;
          }
          .card-text p strong{
            font-size: 24px;
            color: #181818;
            margin: 5px 0;
          }
          .semi-circle-big{
            position: absolute;
            bottom: -8%;
            left: 50%;
          }
          .semi-circle-small{
            position: absolute;
            bottom: -6%;
            right: 10%;
          }
          .start-now{
            border: none;
            cursor: pointer;
            padding: 16px 22px;
            border-radius: 25px;
            font-size: 20px;
            color:white;
            margin-top: 35px;
            margin-bottom: 20px;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          }
          .team{
            margin: 30px 0 20px;
            padding-top: 20px;
           
          }
          .team h3{
            font-family: 'outfit';
            color: #000000;
            font-size: 46px;
            text-align: center;
            margin: 20px 0 0;
            line-height: 46px;
          }
          .team-section{
            padding:0px 50px 40px;
           
            
           
          }
        
          .team-section h1{
            color: rgba(156,156,157,0.2);
            font-family: 'outfit';
            font-size: 160px;
            text-align: center;
            line-height: 170px;
            z-index: -1;
            
          }
          .team-cards{
            display:flex;
        gap: 40px;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-top: 120px;
           
          }
          .team-card{
         padding: 170px 18px 15px;
          background-color: #fdfdfd;
          border-radius: 10px;
          box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25);
          position: relative;
          width:400px;
          }
          .employee-info h4{
color: var(--background-dark);
font-family: 'outfit';
font-size: 20px;

          }
          .employee-img{
            position:absolute;
            left: 0;
            top: -25px;
          }
          .employee-info{
            position: absolute;
            right: 45px;
            top: 55px;
          }
          .employee-info h5{
            color: var(--primary-blue);
            font-family: 'outfit';
            font-size: 17px;
          }
          .social-media-links{
            color: #1D4690;
           margin: 0;
            
            margin-top: 10px;
          
          }
          .employee-para{
            font-size: 14px;
            color: #000000;
          }
          .social-media-links i{
            font-size: 21px;
          }
          .fa-instagram{
            background-color: #1D4690;
            color: white;
          }
          .employee-des{
            display: flex;
            gap: 20px;
            align-items: end;
          }
          .mobile-logos{
            width: 60%;
            margin: 0 auto;
            display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   margin-top: 30px;
           display: none;
          
           

          
           
          }
          .mobile-logos div{
            display:flex ;
            padding:8px 12px;
            align-items: center;
            gap: 10px;
            justify-content: center;
            width:auto;
            border-radius: 14px;
            margin-bottom: 20px;
            background-color: white;
            box-shadow: 0px 25.36px 50.1px rgba(180, 189, 192, 0.5);
          }
          .mobile-logos div i{
            color: #425466;
          }
       .mobile-logos div.whatsapp-mob{
          padding: 12px 20px;
         }
          .team-scroll-container {
           
            margin: 0 auto;
            position: relative;
        }

        .team-cards-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0 0 20px;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
            background: transparent;
        }

        .team-cards-wrapper::-webkit-scrollbar {
            display: none; /* Safari and Chrome */
        }

        .team-cards {
            display: flex;
            gap: 30px;
            padding: 0 20px;
            min-width: max-content;
        }

        
.team-card:hover{
  transform: scale(1.12);
  background-color: var(--background-dark);
 

}
.team-card:hover .employee-info h4{
  color: #F0E9E9;
}
.team-card:hover .employee-para {
  color:#F0E9E9 ;
}
.team-card:hover .employee-info h5 {
  color:#D8022E;
}
.team-card:hover .employee-info .social-media-links {
  color:#F0E9E9 ;
}

        

        .employee-des {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 20px;
        }

       

       

        .employee-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
a{
  text-decoration: none;
}        
        .employee-para {
            font-size: 16px;
            line-height: 1.6;
            color: #000;
            font-family: 'Outfit';
        
            position: relative;
        }

        .employee-para::before {
            content: "";
            font-size: 40px;
            color: #e0e0e0;
            position: absolute;
            top: -10px;
            left: -15px;
        }

        .employee-para::after {
            content: '';
            font-size: 40px;
            color: #e0e0e0;
            position: absolute;
            bottom: -30px;
            right: -15px;
        }

        /* Navigation buttons */
        .scroll-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.95);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            -webkit-tap-highlight-color: transparent; /* Removes gray tap highlight on mobile */
  -webkit-focus-ring-color: transparent;    /* Removes blue outline on WebKit */
  outline: none;                        
        }

        .scroll-nav:hover {
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .scroll-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .scroll-left {
            left: -25px;
        }

        .scroll-right {
            right: -25px;
        }

        /* Fade effect at edges */
        .team-scroll-container::before,
        .team-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50px;
            pointer-events: none;
            z-index: 5;
        }

        .team-scroll-container::before {
            left: 0;
            
        }

        .team-scroll-container::after {
            right: 0;
           
        }
        .lineheight{
          line-height: 55px;
        }
        footer{
          padding:0 0 40px;
          font-family: 'Outfit';
          background-color: #fff;
        }
        .top-footer{
display: flex;
justify-content:space-between;
align-items: center;
padding: 0 80px 40px;
color: #3a3a3a;
        }
        .img-des{
          width: 35%;
        }
        .img-des p{
          font-size: 14px;
          line-height: 24px;
        }
        .logo-img img{
          height: 80px;
        }
        .links{
          display: flex;
          justify-content: space-between;
          width: 42%;
        }
        .links ul{
          list-style-type: none;
        }
        .links ul li{
          font-size: 16px;
          line-height: 30px;
        }
        .links ul li:hover{
          color: var(--primary-blue);

        }
        .bold{
          font-size: 18px !important;
          color: #2b2b2b;
          font-weight: 800;
          margin-bottom: 10px;
        }
        .media-link a img{
          height: 25px;
        }
        .bottom-footer{
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 40px 80px 0;
          
          color: #3a3a3a;
          border-top: 1px solid #dfdfdf;
          font-size: 14px;
        }
        .bottom-links{
list-style-type: none;
display: flex;
gap: 30px;
        }
      .media-link{
        display: flex;
        gap: 10px;
      }
      .case-study{
        padding:20px 30px 20px 60px;
        background-color:#fcfcfc ;
      }
      .case-study-top{
        width: 50%;
      }
      .case-study-top h2{
        font-size:46px ;
        font-family: 'outfit';
      }
      .case-study-top p{
        font-size: 20px;
        font-family: 'Outfit';
        color: #767676;

      }
      .case-study-bottom{
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
      }
      .casestudy-info{
        width: 30%;
      }
      .casestudy-info h4{
        font-size: 36px;
        font-family: 'outfit';
        font-weight: 550;
        margin: 10px 0;
      }
      .casestudy-info p{
        font-size: 20px;
        color: #767676;
        font-family: 'outfit';
        margin-bottom: 20px;
      }
      .casestudy-info a{
        font-size:20px ;
        color: #021545;
        font-family: 'outfit';
        
      }
      .case-study-bottom h3{
color: rgba(58,58,58,0.2);
font-size: 65px;
font-family: 'outfit';
width: 30%;
line-height: 74px;
      }
.contact{
 
margin: 70px 0;
display: flex;
justify-content: center;

}
.contact-form{
  display: flex;
  width: 45%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 35px;
 background: linear-gradient(135deg, #1E4996 0%, #DB022E 100%);
 justify-content: center;
}
.contact-img{
  width: 60%;
 
}
.contact-img img{
  width: 100%;
  height: 100%;
}
.contact-form h4{
  font-size: 46px;
  font-family: 'Outfit';
  color: #F0E9E9;
}
.contact-form span{
  font-size: 24px;
  font-family: 'outfit';
   color: #F0E9E9;
}
form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
form input ,form select,form textarea{
  width: 70%;
  padding: 20px 30px;
  border: 1px solid rgba(229,229,229,0.63);
  background: transparent;
  border-radius:4px;
  outline: 0;
  color: #A6A4A4;
  font-family: 'Outfit';
  font-size: 20px;
}
form textarea{
   
            transition: margin-top 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 0;
     
}
        form textarea.shifted {
           margin-top: 80px; /* Adjusted for fewer options */
        }
form input:active,form input:focus{
  border: 2px solid #fff;
}
form select:active,form select:focus{
  border: 2px solid #fff;
}
form textarea:active,form textarea:focus{
  border: 2px solid #fff;
}

form input::placeholder{
  color: #A6A4A4;
  font-family: 'Outfit';
  font-size: 20px;

}
form select {
  color: #A6A4A4;
   font-family: 'Outfit';
  font-size: 20px;padding-right: 10px;
  cursor: pointer;


}
form textarea::placeholder{
color: #A6A4A4;
  font-family: 'Outfit';
  font-size: 20px;
}
.get-start{
  font-family: 'Plus Jakarta Sans';
  font-size: 20px;
  border-radius: 25px;
  width: 70%;
  padding: 15px;
  background-color: var(--primary-blue);
  color: white;
  border: 0;
  outline: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
  cursor: pointer;
  
           
}
form select{
  box-sizing: border-box;
  cursor: pointer;
}
form select option{
  width: 100%;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.testimonials{
  padding: 150px 0 150px 80px;
  background-color: var(--background-dark);
  display: flex;
  flex-direction: row
  ;
  overflow: hidden;
  justify-content: space-between;
}
.clients{
  color: #F0E9E9;
  font-family: 'outfit';
  width: 43%;
}
.clients h3{
  font-size: 65px;
}
.clients p{
  font-size:30px ;
  margin-top: 15px;
}
.clients-info{
 height: 500px;
  background-color: var(--primary-blue);
  width: 25%;
  position: relative;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  justify-content: center;
   overflow: visible;
  
}
.client-card{
  padding:  40px;
  background-color:#fff;
  position: absolute;
  border-radius: 20px;
  right: 80px;
  top: 60px;
  width: 550px;
   right: -600px !important; /* Start completely off-screen */
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1;
            opacity: 0;
  
}
  .client-card.active {
            right: 50px !important; /* 50px from the right edge of blue container */
            z-index: 1;
            opacity: 1;
            margin-right: 20px;
        }
.client-card h6{
  font-size: 22px;
  font-family: outfit;
}
.client-card span{
  font-size: 20px;
  font-family: 'outfit';
  line-height: 30px;
}
.client-card p{
  font-size: 18px;
  font-family: 'Outfit';
  margin-top: 30px;
}
.client-container{
  height: 100%;
  width: 100%;
  position: relative;
   overflow: visible; 
  
}
.client-card.next {
            right: -500px !important; /* 50px from right edge showing, rest hidden */
            left: auto; /* Reset left positioning */
            z-index: 2;
            opacity: 0.9;
        }

        /* Previous cards - completely hidden */
        .client-card.prev {
            right: -600px !important; /* Completely hidden */
            z-index: 1;
            opacity: 0;
        }
.dots-container {
            position: absolute;
            bottom: 30px;
            left:-65px;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: white;
        }
         .progress-indicator {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 1px;
            overflow: hidden;
            display: none;
        }

        .progress-bar {
            height: 100%;
            background: white;
            border-radius: 1px;
            transform: translateX(-100%);
            transition: transform 0.1s linear;
            
        }

        .progress-bar.animate {
            animation: progress 4s linear infinite;
        }

        @keyframes progress {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0); }
        }
        .why-choose{
  display: flex;
  justify-content:center;
  align-items: center;
  background-image: url(assests/images/choose-bg-updated.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  overflow: hidden;
  
  padding: 50px 120px 0;
  
}
.middle-img{
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: end;
}
.why-choose h2{
  font-size: 46px;
  font-family: 'Outfit';
  color: #000;
}
.choose-points{
  display: flex;
  justify-content: space-between;
  
}
.lists{
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 70px;
}
.point h6{
  font-size: 20px;
  font-family: 'outfit';
  color: var(--background-dark);
}
.point p{
   font-size: 14px;
   line-height: 24px;
  font-family: 'outfit';
  color:#767676;
}
.points-2-2{
  display: none;
}
.case-study-header{
  padding: 30px 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.case-study-heading{
  font-size: 40px;
  line-height: 40px;
  font-family: 'Plus Jakarta Sans';
  color: var(--primary-blue);
}
.case-study-main{
padding:0px 80px ;
}
.case-study-hero-sec{
 
  width: 100%;
  height: 700px;
  border-radius: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.case-study-hero-sec img{
  width: 95%;
  height: 700px;
  border-radius: 20px;
}
.heading-line{
  font-family: 'Inter';
  font-size: 20px;
  color: #767676;
  margin-bottom: 30px;
}
.case-study-points h3{
  color: #181818;
  font-size: 36px;
  font-family: 'Plus Jakarta Sans';
  margin: 15px 0;
}
.case-study-points h6{
  color: #181818;
  font-size: 24px;
  font-family: 'Inter';
  margin-bottom: 6px;
}
.case-study-points p{
  color: #767676;
  font-size: 20px;
  font-family: 'Inter';
  margin-bottom: 40px;
}
.case-study-points ul{
  margin-left: 30px;
  font-size: 20px;
  color: #767676;
  font-family: 'Inter';
  margin-bottom: 40px;
}
.case-study-team{
  margin: 50px 0;
}
.case-study-team h4{
  font-size: 38px;
  font-family: 'Plus Jakarta Sans';
  color: var(--primary-blue);
  
}
.case-study-team p{
font-size: 20px;
  color: #767676;
  font-family: 'Inter';
  margin-top: 30px;
}
.casestudy-hashtags{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 35px 0 20px;
}
.hashtag{
  font-size: 28px;
  font-family: 'Inter';
  color: var(--primary-blue);
  padding: 12px 26px;
  background-color: rgba(24,58, 120, 0.1);
  border-radius: 40px;
  
}
.slider1{
  padding: 30px 50px;
  background-color: white;
  font-family: 'Outfit';
  
}
.slider1 h1{
  font-size: 45px;
  font-family: 'Outfit';
  margin: 20px 0;
}
.slider1 h5{
  font-size: 22px;
  margin: 10px 0;

}
.slider1 h3{
  font-size:28px ;
  margin-top: 30px;
}
.slider1 p{
  margin: 15px 0;
  font-size: 20px;
}
.slider1 ul {
  font-size: 20px;
 margin-bottom: 15px;
  margin-left: 30px;
  
}
.legal-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 9999;
  overflow: hidden;
}

.legal-popup.active {
  transform: translateY(8%);
}

.legal-popup-content {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 40px;
  
}

.legal-popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 10000;
}

/* Hide both sections by default inside the modal */
#privacySection,
#termsSection {
  display: none;
}

/* Show section when active */
#privacySection.active,
#termsSection.active {
  display: block;
}
.bottom-links li{
  cursor: pointer;
}

/* Media queries for responsiveness */
@media(max-width:1500px){
  .start-now{
    margin-top: 25px;
  }
  .green-image-left{
    position: absolute;
    left: -15px;
    bottom: 0;

    
  }
  .green-image-right{
    position: absolute;
    right: -5px;
    bottom: 0;
    

  }
 .casestudy-info{
  width: 31%;
 }
 .casestudy-info h3{
  width: 31%;
 }
}
@media(max-width:1450px){
  .platform-images img{
    width: 270px;
  }
  .partner-box:nth-of-type(1) img{
    height: 275px;
  }
  .partner-box:nth-of-type(2) img{
    height: 270px;
  }
  .image{
    gap: 10px;
    width: 47%;
   
  }
  .image-description{
    padding-right:90px ;
  }
  .Ramesh-corp-logo{
    width: 580px;
  }
  .side-img{
    height: 200px;
  }
 .employee-info{
  right: 36px;
 }
 .links{
  width: 47%;
 }
 .case-study-bottom h3{
  font-size:60px ;
 }
 .casestudy-info p{
  font-size: 19px;
 }
 .casestudy-info h4{
  font-size: 35px;
 }
 
}
@media(max-width:1400px){
  
  .employee-info{
    right: 34px;
  }
  
 
}
@media(max-width:1380px){
  .card-text p{
    font-size: 18px;
    line-height: 32px;
  }
  .card-text p strong{
    font-size: 22px;
    
    
  }
  .card-text h4{
    font-size: 44px;
  }
  .start-now{
   
    padding: 12px 16px;
    font-size: 18px;
    
  }
  .casestudy-info {
    width: 30%;
  }
  .casestudy-info p{
    font-size: 18px;
  }
  .casestudy-info a{
    font-size:19px ;
  }
  .case-study-bottom h3{
    font-size: 56px;
  }
  .casestudy-info img{
    height: 230px;
  }
}
@media(max-width:1350px){
  .hero{
    padding-top: 40px;
  }
  .btn-primary{
    padding: 14px 24px;
    font-size: 18px;
  }
  .platform-para{
    font-size: 22px;
  }
  .image{
    width: 35%;
    gap: 20px;
  }
  .image-text p{
    font-size: 20px;
    line-height: 35px;
    

  }
  .image{
    gap: 10px;
  }
  .image-description{
    padding-right: 70px;
  }
  .image-text h3{
    font-size: 40px;
  }
  .Ramesh-corp-logo{
    width: 550px;
  }
  .side-img{
    height: 150px;
  }
  
  .card-image {
    width: 50%;
  }
  .partner-box:nth-of-type(1) img{
    height: 255px;
  }
  .partner-box:nth-of-type(2) img{
    height: 250px;
  }
  .partner-boxes{
    top: -70%;
  }

.employee-info h4{
  font-size: 18px;
}
.employee-info h5{
  font-size: 15px;
}
.employee-para{
  font-size: 13px;
}
.links{
  width: 50%;
}
.case-study{
  padding-left: 70px;
}
.casestudy-info h4{
  font-size: 34px;
}
.casestudy-info p{
  font-size: 17px;
}
.case-study-top p{
  font-size: 18px;
}
.case-study-top h4{
  font-size: 44px;
}
.why-choose{
  padding: 50px 90px 0;
}
}
@media(max-width:1310px){
  .team-card{
    width: 380px;
  }
  
  .client-card{
padding: 30px;
top:50px;
  }
  .dots-container{
    bottom: 12px;
  }
  .clients p{
    font-size: 28px;
  }
  .clients h3{
    font-size:60px ;
  }
  .clients-info{
    height: 450px;
  }
  .testimonials{
    padding-left: 60px;
  }
  .why-choose h2{
    font-size: 44px;
  }
  .lists{
    margin-top: 55px;
    margin-bottom: 40px;
  }
  .middle-img img{
  width: 780px;
}
}
@media(max-width:1280px){
  .casestudy-info{
    width: 32%;
  }
  .contact-form{
    width: 45%;
  }
  .case-study-bottom h3{
    font-size: 50px;
    width: 28%;
    line-height: 65px;
  }
  form select,form textarea ,form input{
    padding: 15px 25px;
    width: 80%;
  }
  
}
@media(max-width:1250px){
  .hero h1{
font-size:65px ;
  }
  .logo-float{
    padding: 10px 15px;
  }
  .logo-float img{
    width: 130px;
  }
  .left-top{
   left: -10%;
   top: 10%;
  }
  .right-top{
    right: -10%;
  }
  .logo-float.top-right{
    right:4%;
  }
  .logo-float.mid-right{
    right:4%;
  }
  .platform-images img{
    width: 240px;
  }
  .platform-heading{
    font-size: 40px;
  }
  .background-icons {
    height: 28px;
  }
  .background-icons:nth-of-type(17){
    right: 5%;
  }
  .partner-box img{
    height:200px;
  }
  .very-slanted-top h1{
    font-size:55px;
  }
  .partner-boxes{
    top: -80%;
  }
  .process-card{
    width: 33%;
  }
  .digitalspace-card{
    padding:40px 40px 0;
  }
  .card-text h4{
    font-size:42px ;
  }
  .card-text p{
    font-size: 16px;
  }
  .card-text p strrong{
    font-size: 20px;
  }
  .card-image{
    width: 45%;
  }
  .card-image img{
    width: 100%;
  }
  .semi-circle-big{
    left: 43%;
    bottom: -10%;
  }
  .card-text {
    width: 50%;
  }
  .partner-box:nth-of-type(1) img{
    height: 255px;
  }
  .partner-box:nth-of-type(2) img{
    height: 250px;
  }
  .partner-boxes{
    top: -68%;
  }
  .image-description{
    padding-right: 50px;
  }
  .image-text h3{
    font-size: 40px;
  }
  .Ramesh-corp-logo{
    width: 540px;
  }
  .side-img{
    height: 150px;
  }
  .image-text{
    width: 45%;
  }
  
  
  .team-cards{
    gap: 25px;
  }
  .team-section h1{
    font-size: 150px;
    line-height: 160px;
  }
  .employee-info{
    right: 24px;
  }
  .top-footer{
    padding: 0 60px 40px;
  }
  .bottom-footer{
    padding: 40px 60px 0;
  }

  .client-card{
    right: 40px;
  }
  .why-choose{
    padding: 50px 70px 0;
  }
.point h6{
  font-size: 18px;
}
.point p{
  font-size: 13px;
}
.middle-img img{
  width: 700px;
}
.lists{
  margin-bottom: 50px;
}
}
@media(max-width:1210px){
  .case-study{
    padding-left: 50px;
  }
  .case-study-bottom h3{
    font-size: 45px;
  }
  
  .clients p{
    font-size: 26px;
  }
  .clients h3{
    font-size:58px ;
  }
  .clients-info{
    height: 450px;
  }
  .client-card{
    width: 530px;
    top: 50px;
    padding: 30px;
  }
  .dots-container{
    bottom: 20px;
  }
  .client-card.next {
            right: -480px !important; /* 50px from right edge showing, rest hidden */
           
        }
        .contact-form h4{
          font-size: 45px;
        }
}
@media(max-width:1180px){

.side-img{
  height: 160px;
}
.image-text h3{
  font-size: 38px;
}
.image{
  gap: 5px;
}
.image-text p{
  font-size: 19px;
}
.image-description{
  padding-right: 30px;
}
.description h4{
  font-size: 36px;
}
.Ramesh-corp-logo{
  width: 500px;
}
.side-img{
  height: 140px;
}
.description p{
  font-size:21px ;
}
.stereotypes-card h4{
  font-size: 38px;
}
.process-card h4{
  font-size: 38px;
}
.stereotypes-card p{
  font-size: 19px;
}
.process-card p{
  font-size: 19px;
}
.bold-text{
  font-size: 20px;
}
#get-btn{
  font-size: 17px;
  padding: 10px 15px;
}
.partner-box:nth-of-type(1) img{
  height: 245px;
}
.partner-box:nth-of-type(2) img{
  height: 240px;
}
.partner-boxes{
  top: -65%;
}
.very-slanted-top{
  padding-bottom: 180px;
}
.icon-div img{
  height: 50px;
}
.employee-info{
  right: 20px;
}
.team-section{
  padding: 0px 38px 40px;
}
.contact-form{
  width:45% ;
  padding-bottom: 10px;
}
.contact-img{
  width: 55%;
}
.contact-form h4{
  font-size: 44px;
}
.contact-form span{
  font-size: 22px;
}
.middle-img img{
  width: 680px;
}
.why-choose {padding: 50px 50px 0;}
.why-choose h2{font-size: 42px;}
.slider1 h1{
  font-size: 42px;
 
}
.slider1 h5{
  font-size: 21px;
 
}
.slider1 h3{
  font-size:26px ;
 
}
.slider1 p{
  
  font-size: 19px;
}
.slider1 ul {
  font-size: 19px;
 
  
}
}
@media(max-width:1150px){
  .unlock-heading{
    font-size: 44px;
  }
  .card-text h4{
  font-size: 42px;
  }

  .card-text p{
    font-size: 18px;
  }
  .card-text p strong{
    font-size: 21px;
  }
  .unlock-para{
    font-size: 24px;
    width: 950px;
  }
  .start-now{
    font-size: 18px;
    padding: 14px 20px;
  }
  .digitalspace-card{
    padding: 40px 30px 0;
  }
  .team-cards{
    gap: 18px;
  }
  .team-section h1{
    font-size: 145px;
    line-height: 155px;
  }
  .employee-info{
    right:45px;
  }
  .team-section{
    padding: 0px 30px 15px;
  }
  .employee-img{
    height: 200px;
    top: -30px;
    left: -6px;
  }
  .employee-info h4{
    font-size: 17px;
  }
  .team-card{
    padding-top: 150px;
    width: 350px;
  }
  .links{
    width: 55%;
  }
  .casestudy-info img{
    height: 210px;
  }
  .case-study-bottom h3{
    font-size:40px ;
    width: 27%;
  }
  .case-study-top{
    width: 60%;
  }
 
  .clients-info{
    height: 380px;
  }
  .client-card {
    top: 30px;
    padding: 25px;
    width: 510px;
  }
  .client-card h6{
    font-size: 20px;
  }
  .client-card span{
    font-size: 18px;
  }
  .client-card img{
    height: 60px;
  }
  .client-card p{
    font-size: 16px;
  }
  .clients p{
    font-size: 24px;
  }
  .clients h3{
    font-size: 56px;
  }
  .point p{
    font-size: 12px;
    line-height: 22px;
  }
}
@media(max-width:1100px){
  .team-card{
    padding-top: 150px;
  }
  .employee-img img{
    height: 200px;
  }
  .social-media-links i{
    font-size: 18px;
  }
  .team-section  h1{
    font-size:130px ;
    line-height: 140px;
  }
  .team-cards{
    gap: 12px;
  }
  .contact-form h4{
    font-size: 40px;
  }
  .contact-form span{
    font-size: 20px;
  }
  .get-start{
    font-size: 17px;
  }
  .contact-form{
    padding: 15px 30px;
  }
  .testimonials{
    padding-left: 40px;
  }
  .client-card{
    width: 490px;
  }
  .clients p{
    font-size: 22px;
  }
  .clients h3{
    font-size: 52px;
  }
  .client-card{
    padding: 30px 25px;
    width: 480px;
    right: 30px !important;
  }
  .client-card.active{
    margin-right: 15px;
  }
  .client-card.next {
            right: -450px !important; /* 50px from right edge showing, rest hidden */
           
        }
        .dots-container{
          bottom: 10px;
        }
}
@media(max-width:1064px){
  .hero h1{
    font-size: 60px;
  }
  .hero p{
    font-size: 18px;
   
  }
  .logo-float.mid-left{
    top:68% ;


  }
  .logo-float{
    width: 210px;
    padding: 6px;
  }
  .logo-float img{
    width: 80%;
  }
  .logo-float.mid-right{
    top:68% ;
  }
  .platform-images img{
    width: 210px;
  }
  .platform-heading{
    font-size: 36px;
  }
  .platform-images{
    padding: 20px 0;
  }
  .background-icons{
    height: 24px;
  }
  .platform-para{
    font-size: 20px;
    line-height: 30px;
  }
  .background-icons:nth-of-type(5){
    left: 2%;
  }
  .Ramesh-corp-logo{
    width:470px;
  }
  .side-img{
    height: 140px;
  }
  .image-text h3{
    font-size: 36px;
  }
  .image-text{
    width: 46%;
  }
  .image-description{
    padding-right: 20px;
  }
  .image-text p{
    font-size: 19px;
    line-height: 30px;
  }
  .description h4{
    font-size: 34px;
  }
  .description p{
    font-size: 20px;
    line-height: 32px;
  }
  .description {
    padding:50px  0 120px;
  }
  .image{
    gap: 12px;
  }
  .stereotypes-card{
    width: 42%;
  }
  .process-card{
    width: 33.5%;
  }
  .very-slanted-top{
    padding-top: 350px;
  }
  .partner-box:nth-of-type(1) img{
    height: 230px;
  }
  .partner-box:nth-of-type(2) img{
    height: 224px;
  }
  .partner-boxes{
    top: -65%;
  }
  .digitalspace-card{
    padding: 40px 20px 0;
  }
  .digital-space{
    padding: 20px 70px;
  }
  .card-text{
    width: 48%;
  }
  .card-image{
    width: 47%;
  }
  .card-text h4{
    font-size: 39px;
  }
  .employee-info{
    right:42px;
    top: 48px;
  }
  .employee-para{
    font-size: 12px;
  }
  .employee-img img{
    height: 190px;
    
  }
  .employee-img{
    top: -35px;
  }
  .team-card{
    padding-top: 130px;
   
  }
  .background-icons:nth-of-type(8),.background-icons:nth-of-type(8),.background-icons:nth-of-type(11),.background-icons:nth-of-type(4),.background-icons:nth-of-type(17),.background-icons:nth-of-type(9),.background-icons:nth-of-type(1){
    display: none;
  }
  .social-media-links {
    margin-top: 0;
  }
  .img-des p{
    font-size: 13px;
  }
  .links ul li{
    font-size: 15px;
  }
  .bold{
    font-size: 16px !important;
  }
  .links{
    width: 58%;
  }
  .top-footer{
    padding-left: 50px;
    padding-right: 50px;
  }
  .bottom-footer{
    padding-left: 50px;
    padding-right: 50px;
  }
  form{
    gap: 15px;
  }
  .contact-form{
    gap: 8px;
  }
.middle-img img{
  width: 660px;
}
.why-choose{
  padding: 50px 40px 0;
}
.why-choose h2{
  font-size: 40px;
}
}
@media(max-width:1024px){
  .casestudy-info img{
    height: 200px;
  }
  .case-study-bottom h3{
    font-size: 36px;
    line-height: 50px;
  }
  .case-study-top h2{
    font-size: 42px;
  }
  .contact-form h4{
    font-size: 38px;
  }
  .contact-form{
    width: 47%;
  }
  .contact-form span{
    font-size: 19px;
  }
  form select,form input,form textarea{
    font-size: 18px;
  }
  form input::placeholder,form textarea::placeholder{
    font-size: 18px;
  }
  .client-card.active{
    margin-right: 0;
  }
  .case-study-heading{
    font-size: 36px;
    margin: 0;
  }
  .heading-line{
    font-size: 18px;
    margin: 20px 0 30px;
  }
  .case-study-points h3{
    font-size:34px ;
  }
  .case-study-points h6{
    font-size: 22px;
  }
  .case-study-points p{
    font-size: 18px;
  }
  .case-study-points ul{
    font-size: 18px;
  }
  .case-study-team h4{
    font-size: 34px;
  }
   .case-study-team p{
    font-size: 18px;
  }
  .hashtag{
    font-size: 24px;
  }
  .case-study-header{
    padding: 30px 50px;
  }
  .case-study-main{
    padding: 0 50px;
  }
  .casestudy-hashtags{
    gap:20px;
  }
  .slider1{
    padding: 20px 40px;
  }
}
@media(max-width:1004px){
  .card-text h4{
    font-size: 39px;
  }
  .unlock-heading{
    font-size: 42px;
  }
  .card-image{
    width: 50%;
  }
  .card-text{
    padding-bottom: 40px;
  }
  .digitalspace-card{
    padding: 50px 20px 0;
  }
}
@media(max-width:992px){
  .platform-heading{
    font-size: 34px;
  }
  .platform-images img{
    width: 165px;
  }
  .platform-para{
    font-size: 18px;
    width:700px ;
  }
  .background-icons:nth-of-type(8){
    left: 10%;
  }
  .Ramesh-corp-logo{
    width: 420px;
  }
  .side-img{
    height: 120px;
  }
  .image{
    gap: 0px;
  }
  .image-text h3{
    font-size: 34px;
  }
  .image-text p{
    font-size: 18px;
    line-height: 28px;
  }
  .image-text{
    width: 46%;
  }
  .description h4{
    font-size: 32px;
  }
  .description p{
    font-size: 18px;
    width: 70%;
  }
  .stereotypes-card h4{
    font-size: 36px;
  }
  .process-card h4{
    font-size: 36px;
  }
  .stereotypes-card p{
    font-size: 18px;
  }
  .process-card p{
    font-size:18px ;
  }
  .bold-text{
    font-size: 19px;
  }
  .icon-div img{
    height: 42px;
  }
  .very-slanted-top h1{
    font-size: 51px;
  }
  .partner-boxes{
    top: -70%;
  }
  .partner-box img{
    height:180px;
  }
  .cards{
    top:-5%;
  }
  .stereotypes-card{
    width: 47%;
  }
  .process-card{
    width: 38%;
  }
  #get-btn{
    font-size: 16px;
    padding: 8px 12px;
  }
  .very-slanted-top{
    padding-top: 300px;
  }
  .digitalspace-card{
    padding: 50px 50px 0 ;
    width: 90%;
  }
  .semi-circle-big{
    bottom: -5%;
    left: 2%;
  }
  .semi-circle-small{
    bottom: -3%;
  }
  .digitalspace-card:nth-of-type(1)
  {
    flex-direction: column-reverse;
  }
  .digitalspace-card:nth-of-type(2)
  {
    flex-direction: column;
  }
  .digitalspace-card:nth-of-type(3)
  {
    flex-direction: column-reverse;
  }
  .digitalspace-card:nth-of-type(4)
  {
    flex-direction: column;
  }
  .card-text{
    width: 100%;
    margin-top: 30px;
  }
  .card-image{
    width: 100%;
  }
  .partner-box:nth-of-type(1) img{
    height: 220px;
  }
  .partner-box:nth-of-type(2) img{
    height: 215px;
  }
  .partner-boxes{
    top: -65%;
  }
  .very-slanted-top {
    padding-bottom: 150px;
  }
  

  .team-card{
    width: 350px;
   
  }
  
  
  .team-section h1{
    font-size:120px ;
    line-height: 130px;
  }
  .img-des{
    width: 100%;
  }
 .top-footer{
  padding-top: 30px;
 }
 footer{
  padding-top: 40px;
 }
  .top-footer{
    flex-direction: column;
    align-items: flex-start;
    padding-left: 100px;
    padding-right: 100px;
  }
  .img-des p{
    font-size: 14px;
    margin-bottom: 20px;
  }
  .bottom-footer{
    padding-left: 80px;
    padding-right: 80px;
  }
  .links{
    width: 100%;
  }
  .case-study-bottom{
    flex-direction: column-reverse;
  }
  .case-study-bottom h3{
    width: 100%;
  }
  .casestudy-info{
    width: 80%;
    margin: 20px ;
  }
  .case-study{
    padding: 20px 48px 20px 58px;
  }
  .casestudy-info img{
    height: 225px;
  }
  .case-study-top{
    width: 100%;
  }
.contact{
   flex-direction: column;
   align-items: center;
   margin: 0;
   
}
.contact-form{
  width: 100%;
}
.contact-img{

width: 100%;
}
.contact-img img{
 
  height: auto;
}

.testimonials{
  flex-direction: column;
  padding: 150px 0;
  align-items: end;
}
.clients{
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  padding: 0 80px;
}
.clients-info{
  width: 35%;
  
 
}
.middle-img img{
  width: 640px;
}
.lists{
 width: 70%;
 margin: 0;
 gap: 20px;

}
.choose-points{
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.points-2-1{
  display: none;
}
.points-2-2{
  display: flex;
  margin-top: 20px;
  
}
.why-choose{
 background-size: 100% 50%;
  background-position: 0% 20%;
  background-image: url(assests/images/mobile-whychoose.png);
}
.case-study-hero-sec img{
  width: 100%;
  
}
}
@media(max-width:900px){

.team-section h1{
  font-size: 110px;
  line-height: 120px;
}
.bottom-footer{
  flex-direction: column-reverse;
  gap: 15px;
}
}
@media(max-width:845px){
  .hero h1{
    font-size: 55px;
  }
  .hero p{
    font-size: 17px;
   
  }
  .platform-heading{
    font-size: 32px;
  }
  .platform-images img{
    width: 140px;
  }
  .platform-para{
    font-size: 17px;
    width:600px ;
  }
  .background-icons{
    height:20px ;
  }
  .background-icons:nth-of-type(8),.background-icons:nth-of-type(8),.background-icons:nth-of-type(11),.background-icons:nth-of-type(4),.background-icons:nth-of-type(17),.background-icons:nth-of-type(9),.background-icons:nth-of-type(1){
    display: none;
  }
  .Ramesh-corp-logo{
    width: 390px;
  }
  .image-description{
    padding-right:10px ;
  }
  .side-img{
    height: 100px;
  }
  .image-text h3{
    margin: 0;
  }
  
  .description {
    padding: 40px 0 100px;
  }
  .stereotypes-card h4{
    font-size: 32px;
  }
  .stereotypes-card p{
    font-size:17px ;
  }
  .process-card h4{
    font-size: 32px;
  }
  .process-card p{
    font-size: 16px;
  }
  .cards{
    gap: 12px;
  }
  .partner-boxes{
    top: -100%;
  }
  .very-slanted-top{
    padding-top: 250px;
  }
  .icon-div img{
    height: 32px;
  }
  .image-icons{
    height: 150px;
  }
  .unlock-heading{
    font-size: 38px;
  }
.unlock-para{
  font-size: 22px;
}
.digitalspace-card{
  width: 100%;
}
.partner-box:nth-of-type(1) img{
  height: 210px;
}
.partner-box:nth-of-type(2) img{
  height: 205px;
}
.partner-boxes{
  top: -110%;
  gap: 25px;
}
.team-section h1{
  font-size: 100px;
  line-height: 110px;
}
.top-footer{
  padding-left: 80px;
  padding-right: 80px;
}
.case-study{
  padding: 20px 40px;
}
.casestudy-info{
  width: 100%;
}
.case-study-bottom h3{
  font-size: 33px;
}
.clients-info{
  margin: 0;
  width: 38%;
}
.clients{
  padding: 0 60px;
}
.testimonials{
  padding: 100px 0;
}
.point h6{
  font-size: 16px;
}
.lists{
  width: 80%;
}
.why-choose h2{
  font-size: 38px;
}
.middle-img {
  width: 620px;
}
}
@media(max-width:775px){
  .logo-float img{
    width: 120px;
  }
  .logo-float.mid-left{
    top:75% ;
  }
  .logo-float.mid-right{
    top:75% ;
  }
  .hero h1{
    line-height: 74px;
  }
  .hero p{
    font-size: 17px;
  }
  .hero{
    padding-top: 50px;
  }
  .btn-primary{
   font-size: 18px;
  }
  .Ramesh-corp-logo{
    width: 330px;
  }
  .image-description{
    padding-right: 5px;
  }
  .side-img{
    height: 80px;
  }
  .image-text h3{
    font-size: 32px;
  }
  .image-text{
    width: 48%;  }
  .image-text p{
    font-size: 17px;
    line-height: 25px;
  }
  .description p{
    font-size: 17px;
    line-height: 25px;
  }
 
  .description h4{
    font-size: 30px;
  }
  .description {
    padding: 40px 0 60px;
  }
  .card-text h4{
    font-size: 38px;
  }
  .card-text p{
    font-size: 17px;
  }
  .card-text p strong{
    font-size: 20px;
  }
  .unlock-heading{
    font-size: 36px;
  }
 
  .employee-info{
    right: 70px;
  }
  .employee-img{
    left: 0;
  }
  .employee-info{
    right: 32px;
  }
}

@media (max-width: 768px) {
  .hero-content h1{
    margin-top: 0;
  }
  .logo-float{
    display: none;
  }
  .trusted-by-header h3{
    font-size: 20px;}
  .trusted-by-header h2{
    font-size:28px ;
  }
  
  .marquee-item img{
    height: 80px;
  }
  .marquee-item img.small-img{
  height: 100px;
}
  .marquee {
    gap: 2rem;
  }
  .mobile-logos{
    display:flex
    ;
  }
  
  .platform-images{
    gap: 100px;
  }
  .platform-heading{
    font-size: 30px;
  }
  .stereotypes-card{
    width: 50%;
  }
  .process-card{
    width: 40%;
  }
  .stereotypes-card
  {
    padding: 12px 18px;
  }
  .stereotypes-card h4{
    font-size: 30px;
  }
  .process-card h4{
    font-size:30px ;
  }
  .stereotypes-card p,.process-cardp p{
    font-size: 16px;
  }
  .process-card{
    padding:12px 18px ;
  }
  #get-btn{
    font-size: 15px;
    padding: 8px 12px;
  }
  .team-section h1{
    font-size: 85px;
    line-height: 95px;
  }
  .scroll-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}
.top-footer{
  padding-left: 60px;
  padding-right: 60px;
}
.bottom-footer{
  padding-left: 60px;
  padding-right: 60px;
}
.clients h3{
  font-size: 48px;
}
.clients p{
  font-size: 20px;
}
.client-card h6{
font-size: 18px;
}
.client-card span{
  font-size: 16px;
}
.client-card p{
  font-size: 16px;
  margin-top: 20px;
}
.client-card img{
  height: 50px;
}
.clients-info{
  height: 350px;
}
.client-card{
  padding: 25px 20px;
  width: 465px;
}
.client-card.next{
  right: -435px !important;
}
.why-choose h2{
  font-size: 36px;
}
.lists{
  width: 85%;
}
.team h3{
font-size: 40px;
line-height: 40px;
}
.case-study-heading{
    font-size: 34px;
    margin: 0;
  }
  .heading-line{
    font-size: 16px;
    margin: 20px 0 30px;
  }
  .case-study-points h3{
    font-size:32px ;
  }
  .case-study-points h6{
    font-size: 20px;
  }
  .case-study-points p{
    font-size: 16px;
  }
  .case-study-points ul{
    font-size: 16px;
  }
  .case-study-team h4{
    font-size: 32px;
  }
   .case-study-team p{
    font-size: 16px;
  }
  .hashtag{
    font-size: 22px;
  }
  .case-study-header{
    padding: 30px 40px;
  }
  .case-study-main{
    padding: 0 40px;
  }
  .casestudy-hashtags{
    gap:15px;
  }
  .case-study-hero-sec{
    height: 600px;
  }
  .case-study-hero-sec img{
  width: 100%;
  height: 600px;
}
.slider1{
  padding: 0 30px;
  padding-bottom: 30px;
}
.slider1 h1{
  font-size: 38px;
}
.slider1 h5{
  font-size: 19px;
 
}
.slider1 h3{
  font-size:24px ;
 
}
.slider1 p{
  
  font-size: 17px;
}
.slider1 ul {
  font-size: 17px;
 
  
}
}
  

@media(max-width:728px){
  .employee-info{
    right: 55px;
  }
}
@media(max-width:700px){
  .cards{
    flex-direction: column;
    align-items: center;
  }
  .process-card{
    width: 70%;
    padding: 20px 60px 40px;
  }
  .stereotypes-card{
    width: 70%;
    padding: 20px;
  }
  .very-slanted-top{
    padding-top: 600px;
  }
  .partner-box:nth-of-type(1) img{
    height: 200px;
  }
  .partner-box:nth-of-type(2) img{
    height: 195px;
  }
  .partner-boxes{
    top: -110%;
    gap: 20px;
  }
  .unlock-para{
    max-width:88%;
  }
  .side-img{
    height: 80px;
  }
  .Ramesh-corp-logo{
    width: 310px;
  }
  .employee-info{
    right: 32px;
  }
  .why-choose{
 background-size: 100% 45%;
  background-position: 0% 24%;
}
.why-choose h2{
  font-size: 34px;
  margin-bottom: 15px;
}
}
@media(max-width:666px){
  .hero h1{
    font-size: 50px;
    line-height: 70px;
  }
.background-hero{
  display: none;
}
.logo-float{
  width: auto;
}
.logo-float img{
  width: 105px;
}
.btn-primary{
  font-size: 16px;
}
.mobile-logos{
  width: 70%;
}
.background-icons{
  height: 18px;
}
.platform-heading{
  font-size: 28px;
}
.platform-images img{
  width: 120px;
}
.platform-para{
  font-size: 17px;
  line-height: 25px;
  width: 550px;
}
.Ramesh-corp-logo{
  width:280px;
}
.side-img{
  height: 60px;
}

.image-text h3{
  font-size: 30px;
}
.image-text{
  width: 50%;  }
.image-text p{
  font-size: 16px;
  line-height: 24px;
}
.description p{
  font-size: 16px;
  line-height: 24px;
  width: 550px;
}

.description h4{
  font-size: 28px;
}
.description {
  padding: 40px 0 80px;
}
.card-text h4{
  font-size: 36px;
}
.unlock-heading{
  font-size:32px ;
}
.digital-space{
  padding:20px 60px;
}

.team-section h1{
  font-size: 75px;
  line-height: 85px;
}
.top-footer{
  padding-left: 50px;
  padding-right: 50px;
}
.bottom-footer{
  padding-left: 50px;
  padding-right: 50px;
}
.clients h3{
  font-size: 45px;
}
.clients p{
  font-size: 18px;
}
.client-card h6{
font-size: 16px;
}
.client-card span{
  font-size: 15px;
}
.client-card p{
  font-size: 15px;
  margin-top: 15px;
}
.client-card img{
  height: 45px;
}
.clients-info{
  height: 320px;
}
.client-card{
  padding: 20px 15px;
  width: 430px;
}
.client-card.next{
  right: -405px !important;
}
.why-choose{
 background-size: 100% 40%;
  background-position: 0% 31%;
}
.case-study-hero-sec{
    height: 500px;
  }
  .case-study-hero-sec img{
  width: 100%;
  height: 500px;
}
.media-link a img{
  height: 20px;
}
}
  


@media(max-width:595px){
  .mobile-logos{
    width: 80%;
  }
.global-platforms{
  padding: 30px;
}
.platform-images{
  gap: 70px;
}
.platform-para{
  width: 350px;
  font-size: 16px;
}
.platform-heading{
  font-size: 26px;
}
.image-description{
  flex-direction: column-reverse;
  padding: 20px 30px 0;
  gap: 30px;
}
.image-text{
  width: 100%;
}
.image{
  width: 100%;
}
.Ramesh-corp-logo{
  width: 480px;
}
.side-img{
  height: 120px;
}
.description {
  padding: 40px 30px 70px;
  align-items: flex-start;
}
.description h4{
  text-align: left;
}
.description p{
  width: auto;
  text-align: left;
}
.partner-boxes{
  top: -90%;
}
.partner-box img{
  height: 160px;
}
.very-slanted-top {
  padding-bottom: 100px;
}
.very-slanted-top h1{
  font-size: 48px;
}
.partner-box:nth-of-type(1) img{
  height: 190px;
}
.partner-box:nth-of-type(2) img{
  height:185px;
}
.partner-boxes{
  top: -100%;
  gap: 18px;
}
.very-slanted-top{
  padding-bottom: 150px;
}


.social-media-links{
  margin-top: 5px;
}
.team-card{
  padding-top: 130px;
 
}

.employee-img img{
  height: 190px;
}
.employee-info{
  top: 50px;
  right: 50px;
}
.team-section h1{
  font-size: 65px;
  line-height: 75px;
}
.links ul li {
  font-size: 14px;
}
.bold{
  margin-top: 6px;
  font-size: 15px !important;
}
footer{
  padding-top: 0;
}
.top-footer{
  padding-left: 35px;
  padding-right: 35px;
}
.bottom-footer{
  padding-left: 40px;
  padding-right: 40px;
}


.case-study-top h2{
  font-size: 38px;
  text-align: center;
}
.case-study-top p{
  text-align: center;
  font-size: 16px;
}
.case-study-bottom h3{
  text-align: center;
}
.casestudy-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.case-study{
  padding: 20px 30px;
}
.casestudy-info{
  margin: 20px  0;
  
}
.casestudy-info p{
  text-align: center;
}
.casestudy-info a{
  font-size: 17px;
}
.contact-form h4{
  font-size: 34px;
}
.contact-form span{
  font-size: 18px;
}
form select ,form textarea,form input{
  font-size: 16px;
}
form textarea::placeholder,form input::placeholder{
  font-size: 16px;
}
.get-start{
  font-size: 16px;
}
.testimonials{
  padding: 80px 0;
}
.clients{
  padding: 0 40px;
}
.lists{
  gap: 30px;
}
.point h6{
  font-size: 15px;
  text-align: center;
}
.point p{
  text-align: center;
}
.why-choose{
 background-size: 100% 40%;
  background-position: 0% 38%;
}
.middle-img img{
  width: 560px;
}
.lists{
  width: 80%;
}
.point p{
  line-height: 20px;
}
.hashtag{
  font-size: 20px;
}
}
@media (max-width:525px){
  .mobile-logos{
    width: 85%;
  }
  .mobile-logos div{
    padding: 6px 10px;
  }
  .mobile-logos div.whatsapp-mob{
    padding: 10px 18px;
  }
  .marquee-item img{
    height: 60px;
  }
 .marquee-item img.small-img{
  height: 80px;
}
  .hero h1{
    font-size: 45px;
    line-height: 60px;
  }
  .hero p{
    font-size: 16px;
    margin: 20px;
  }
  .logo-float{
    padding: 8px 12px;
  }
  .logo-float.mid-right{
    top: 72%;
  }
  .logo-float.mid-left{
    top: 72%;
  }
  .platform-images img{
    width: 55%;
  }
  .platform-images img.meta-img{
    width: 60%;
  }
  .platform-images {
    padding: 10px 0;
    flex-direction: column;
  }
  .platform-heading{
    font-size: 23.6px;
  }
  .platform-para{
    font-size: 15px;
  }
  .Ramesh-corp-logo{
    width:430px ;
  }
  .side-img{
    height: 100px;
  }
  .description{
    padding: 30px 30px 60px;
  }
  .very-slanted-top h1{
    font-size: 42px;
  }
  .process-card{
    padding: 40px;
  }
  
  .stereotypes-card{
    width: 90%;
  }
  .process-card{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .process-card p{
    text-align: center;
  }
  .team h3{
font-size: 28px;
line-height: 28px;
}
  .partner-boxes{
    gap: 5px;
  }
  .unlock-heading{
    font-size: 30px;
  }
  .card-text h4{
    font-size: 32px;
  }
  .card-text p{
    font-size: 16px;
  }
  .card-text p strong{
    font-size:20px ;
  }
 .start-now{
  font-size: 16px;
  padding: 13px 16px;
 }
 .unlock-para {
  font-size: 20px;
 }
 .digital-space{
  padding: 20px 52px;
 }
 .digitalspace-card{
  padding: 30px;
 
}
.partner-box:nth-of-type(1) img{
  height: 180px;
}
.partner-box:nth-of-type(2) img{
  height:175px;
}
.partner-boxes{
  top: -100%;
  gap: 12px;
}
.unlock-para{
  max-width:100%;
}
.employee-info h4{
  font-size:16px ;
}
.employee-info h5{
  font-size: 14px;
}
.employee-info{
  right: 45px;
}
.social-media-links{
  margin-top: 0;
}
.social-media-links i{font-size: 15px;
}
.team-section h1{
  font-size: 50px;
  line-height: 60px;
}
.links{
  flex-wrap: wrap;
  gap: 40px;
}
.top-footer{
  padding-left: 30px;
  padding-right: 30px;
}
.contact{
  gap: 0;
}
form select ,form textarea,form input{
 padding: 12px 15px;
}
.get-start{
  padding: 12px 10px;
}
.client-card{
  width:420px ;
  top: 30px;
}
.dots-container{
  bottom: 15px;
}
.why-choose h2{
  font-size: 32px;
}
.point h6{
  font-size:14px ;
}
.point p{
  font-size: 11px;
}
.lists{
  width: 75%;
}
.case-study-heading{
    font-size: 32px;
    margin: 0;
  }
  .heading-line{
    font-size: 15px;
    margin: 20px 0 30px;
  }
  .case-study-points h3{
    font-size:30px ;
  }
  .case-study-points h6{
    font-size: 18px;
  }
  .case-study-points p{
    font-size: 15px;
  }
  .case-study-points ul{
    font-size: 15px;
  }
  .case-study-team h4{
    font-size: 30px;
  }
   .case-study-team p{
    font-size: 15px;
  }
  .hashtag{
    font-size: 19px;
    padding: 10px 20px;
  }
  .case-study-header{
    padding: 30px 40px;
  }
  .case-study-main{
    padding: 0 40px;
  }
  .casestudy-hashtags{
    gap:15px;
  }
 
  .case-study-hero-sec{
    height: 450px;
  }
  .case-study-hero-sec img{
  width: 100%;
  height: 450px;
}
.slider1{
  padding: 0 30px;
  padding-bottom: 30px;
}
.slider1 h1{
  font-size: 35px;
}
.slider1 h5{
  font-size: 18px;
 
}
.slider1 h3{
  font-size:23px ;
  margin-top: 20px;
 
}
.slider1 p{
  margin: 10px 0;
  font-size: 16px;
}
.slider1 ul {
  font-size: 16px;
 margin-bottom: 10px;
 
  
}
}
@media(max-width:495px){
  .employee-img img{
    height: 180px;
  }
  .team-card{
    padding-top: 120px;
  }
  .employee-para{
    font-size: 12px;
  }
  .employee-info{
    right: 50px;
  }
}
@media(max-width:475px){
  .hero h1{
    font-size: 40px;
    line-height: 50px;
  }
  .hero p{
    font-size: 15px;
  }
  .logo-float.mid-right{
    top: 68%;
  }
  .logo-float.top-left{
    top: 4%;
  }
  .logo-float.top-right{
    top: 4%;
  }
  .logo-float.mid-left{
    top: 68%;
  }
  .btn-primary{
    font-size: 14px;
  }
  
  
  .platform-para{
   text-align: center;
    width: auto;
    padding-top: 0;
  }
   
  .background-icons:nth-of-type(2){
    left: 1%;
  }
  .background-icons:nth-of-type(3){
    left: 2%;
    bottom: 20%;
  }
  .background-icons:nth-of-type(19){
    
   top: 65%;
   right: 6%;
  }
  .background-icons:nth-of-type(13){
    
  display: none;
   }
   .background-icons:nth-of-type(3){
    left: 4%;
   }
  .platform-images{
    gap: 45px;
  }
  #mobile{
    display: block;
    width: 100%;
  }
  #web{
    display: none;
  }
  .Ramesh-corp-logo{
    width: 380px;
  }
  .description h4{
    font-size: 27px;
  }
  .side-img{
    height: 80px;
  }
  .digitalspace-card{
    padding: 20px;
  }
  .digital-space{
    padding: 20px 40px;
  }
  .partner-box:nth-of-type(1) img{
    height: 170px;
  }
  .partner-box:nth-of-type(2) img{
    height:165px;
  }
  .partner-boxes{
    top: -100%;
    gap: 10px;
  }
  .very-slanted-top{
    padding-bottom: 130px;
  }
  .unlock-para{
    font-size: 18px;
  }
  
  .platform-images img{
    width: 50%;
  }
  .case-study-top h2{
    font-size: 36px;
  }
  .case-study-top p{
    font-size: 15px;
  }
  .case-study-bottom h3{
    font-size: 30px;
  }
  .casestudy-info h4{
    font-size: 30px;
  }
  .casestudy-info p{
    font-size: 16px;
  }
  .casestudy-info a{
    font-size: 16px;
  }

  .casestudy-info img{
    height: 200px;
  }
  .contact-form h4{
  font-size: 32px;
}
.contact-form span{
  font-size: 17px;
}
form select ,form textarea,form input{
  font-size: 15px;
}
form textarea::placeholder,form input::placeholder{
  font-size: 15px;
}
.get-start{
  font-size: 15px;
}
.clients h3{
  font-size: 42px;
}
.clients p{
  font-size: 16px;
}
.client-card h6{
font-size: 14px;
}
.client-card span{
  font-size: 14px;
}
.client-card p{
  font-size: 14px;
  margin-top: 14px;
}
.client-card img{
  height: 35px;
}
.clients-info{
  height: 300px;
}
.client-card{
  padding: 15px 10px;
  width: 370px;
  top:38px;
}
.client-card.next{
  right: -355px !important;
}
.lists {
  gap: 20px;
  width: 60%;
}
.why-choose{
 background-size: 100% 50%;
  background-position: 0% 40%;
 
}
.why-choose h2{
  font-size:30px ;
}
.middle-img img{
  width: 440px;
}
.platform-images img.meta-img{
    width: 55%;
  }
   .mobile-logos{
    width: 93%;
  }
  .mobile-logos div{
    padding: 4px 7px;
  }
  .mobile-logos div.whatsapp-mob{
    padding: 8px 16px;
  }
  .btn-primary{
    margin: 30px 0;
  }
  .hero{
    min-height: 75vh !important;
  }
  .case-study-heading{
    font-size: 30px;
    margin: 0;
  }
  .heading-line{
    font-size: 15px;
    margin: 20px 0 30px;
  }
  .case-study-points h3{
    font-size:28px ;
  }
  .case-study-points h6{
    font-size: 16px;
  }
  .case-study-points p{
    font-size: 15px;
  }
  .case-study-points ul{
    font-size: 15px;
  }
  .case-study-team h4{
    font-size: 28px;
  }
   .case-study-team p{
    font-size: 15px;
  }
  .hashtag{
    font-size: 18px;
    padding: 8px 18px;
  }
  .case-study-header{
    padding: 30px 30px;
  }
  .case-study-main{
    padding: 0 30px;
  }
  .casestudy-hashtags{
    gap:12px;
  }
 .case-study-hero-sec{
    height: 400px;
  }
  .case-study-hero-sec img{
  width: 100%;
  height: 400px;
}
}
@media(max-width:445px){
  .employee-img img{
    height: 160px;
  }
  .team-card{
    padding-top: 110px;
    width: 320px;
  }
  .employee-info{
    top: 40px;
  }
  .team-cards{
    gap: 35px;
  }
  .bottom-footer{
    padding-left: 30px;
    padding-right: 30px;
  }
  .bottom-links{
    gap: 14px;
  }
}
@media (max-width:425px){
  .hero h1{
    font-size: 36px;
    line-height: 40px;
  }
  .hero p{
    font-size: 14px;
  }
  
  .logo-float.mid-right{
    top: 66%;
  }
  .logo-float.mid-left{
    top: 66%;
  }
  .trusted-by-header h3{
    font-size: 18px;}
  .trusted-by-header h2{
    font-size:24px ;
  }
  .logo-floating{
    width: 90px;
  }
  .trusted-by{
    padding:20px 0 32px;
  }
  .marquee{
    gap: 1rem;
  }
 
  .meta-logo{
    height: 20px;
  }
  .platform-heading{
    line-height: 30px;
  }
  .platform-images img{
    width: 55%;
  }
  .platform-images img.meta-img{
    width: 60%;
  }
  .platform-images:nth-child(3){
    width: 60%;
  }
  .global-platforms{
    padding: 25px;
  }
  .background-icons:nth-of-type(16)
{
  display: none;
  
}
.background-icons:nth-of-type(18)
{
  display: none;
  
}
.background-icons:nth-of-type(4)
{display: none;

}
.background-icons:nth-of-type(8){
  display: none;
}
.platform-para{
  padding-bottom: 15px;
}
.Ramesh-corp-logo{
  width: 320px;
}
.image-text h3{
  font-size: 28px;
}
.description h4{
  font-size: 24px;
}
.description{
  padding: 25px 25px 60px;
}
.stereotypes-card{
  width: 95%;
}
.process-card{
  width: 95%;
}
.stereotypes-card h4, .process-card h4{
  font-size: 28px;
}
.stereotypes-card p, .process-card p{
  font-size: 15px;
}
.very-slanted-top{
  padding-top: 560px;
}
.very-slanted-top h1{
  font-size: 38px;
}
.image-icons{
  height: 100px;
}

.icon-div img{
  height: 25px;
}
.partner-box:nth-of-type(1) img{
  height: 150px;
}
.partner-box:nth-of-type(2) img{
  height:145px;
}
.partner-boxes{
  top: -130%;
  gap: 10px;
}
.digital-space{
  padding: 20px 23px;
}
.card-text h4{
  font-size:28px ;
}
.card-text p{
  font-size:15px ;
}
.card-text p strong{
font-size: 18px;
}
.start-now {
  font-size: 15px;
}
.very-slanted-top{
  padding-bottom: 100px;
}
.employee-info h4{
  font-size: 15px;
}
.employee-info h5{
  font-size: 13px;
}
.employee-info{
  right: 28px;
}
.team-cards{
  gap:55px;
  padding-left: 20px;
}
.team-card{
  width: 300px;
}
.team-section h1{
  font-size: 45px;
  line-height: 55px;
}
.case-study-top h2{
    font-size: 34px;
  }
  .case-study-top p{
    font-size: 15px;
  }
  .case-study-bottom h3{
    font-size: 28px;
  }
  .casestudy-info h4{
    font-size: 28px;
  }
  .casestudy-info p{
    font-size: 15px;
  }
  .casestudy-info a{
    font-size: 15px;
  }

  .casestudy-info img{
    height: 180px;
  }
  .contact-form h4{
  font-size: 30px;
}
form{
  margin-top: 15px;
}
.contact-form span{
  font-size: 16px;
}
form select ,form textarea,form input{
  font-size: 15px;
  width: 90%;
}
form textarea::placeholder,form input::placeholder{
  font-size: 15px;
}
.get-start{
  font-size: 15px;
}
.clients h3{
  font-size: 38px;
}
.clients p{
  font-size: 15px;
}
.client-card h6{
font-size: 13px;
}
.client-card span{
  font-size: 13px;
}
.client-card p{
  font-size: 13px;
  margin-top: 13px;
}
.client-card img{
  height: 30px;
}
.clients-info{
  height: 280px;
}
.client-card{
  padding: 10px 10px;
  width: 310px;
  top:27px;
}
.dots-container{
  bottom: 8px;
}
.client-card.next{
  right: -290px !important;
}
.why-choose h2{
  font-size: 27px;
  margin-bottom: 10px;

}
.lists{
  width: 55%;
}
 .mobile-logos{
    width: 100%;
  }
  .mobile-logos div{
    padding: 4px 8px;
    gap: 6px;
  
  }
  .mobile-logos div img{
    max-width: 125px;
  }
  .mobile-logos div.whatsapp-mob{
    padding: 6px 15px;
  }
   .case-study-heading{
    font-size: 28px;
    margin: 0;
  }
  .heading-line{
    font-size: 14px;
    margin: 20px 0 30px;
  }
  .case-study-points h3{
    font-size:26px ;
  }
  .case-study-points h6{
    font-size: 15px;
  }
  .case-study-points p{
    font-size: 14px;
  }
  .case-study-points ul{
    font-size: 14px;
  }
  .case-study-team h4{
    font-size: 26px;
  }
   .case-study-team p{
    font-size: 14px;
  }
  .hashtag{
    font-size: 16px;
    padding: 6px 16px;
  }
  .case-study-header{
    padding: 30px 25px;
  }
  .case-study-main{
    padding: 0 25px;
  }
  .casestudy-hashtags{
    gap:10px;
  }
 
  .case-study-hero-sec{
    height: 320px;
  }
  .case-study-hero-sec img{
  width: 100%;
  height: 320px;
}
.slider1{
  padding: 0 25px;
  padding-bottom: 30px;
}
.slider1 h1{
  font-size: 34px;
}
.slider1 h5{
  font-size: 17px;
 
}
.slider1 h3{
  font-size:21px ;
  margin-top: 20px;
 
}
.slider1 p{
 
  font-size: 15px;
}
.slider1 ul {
  font-size: 15px;

 
  
}
}
@media(max-width:385px){
 
  .employee-info h4{
    font-size:14px ;
  }
  .employee-info {
    right:35px;
  }
  .employee-info h5{
    font-size:12px ;
  }
  .social-media-links{
    font-size: 13px;
  }
  .team-card{
    width: 290px;
  }
  .team-cards{
    gap: 60px;
  }
}
@media(max-width:375px){
  .hero h1{
    font-size: 32px;
  }
  .background-icons{
    height: 14px;
  }
  .platform-para{
    font-size: 14px;
    line-height:22px;
    padding-bottom: 10px;
  }
  .platform-heading{
    font-size: 22px;
    margin: 15px 0;
  }
  .platform-images{
    gap: 30px;
   
  }
  .Ramesh-corp-logo{
    width: 280px;
  }
  .side-img{
    height: 60px;
  }
  .image-text h3{
font-size: 24px;
  }
  .description h4{
    font-size: 20px;
  }
  .image-text p{
    font-size: 15px;
    line-height: 24px;
  }
  .description p{
    font-size: 15px;
    line-height: 24px;
  }
  .description{
    padding-top: 0;
  }
  .very-slanted-top h1{
    font-size: 34px;
  }
  .image-icons{
    height: 100px;
  }
  .very-slanted-top {
    padding-bottom: 100px;
    padding-top: 560px;
  }
  .unlock-para{
    font-size: 16px;
  }
  .unlock-heading{
    font-size: 26px;
  }
  .card-text h4{
    font-size:26px ;
  }
  .card-text p{
    font-size:14px ;
  }
  .card-text p strong{
  font-size: 16px;
  }
  .start-now {
    font-size: 14px;
  }
  .partner-box:nth-of-type(1) img{
    height: 140px;
  }
  .partner-box:nth-of-type(2) img{
    height:135px;
  }
  .partner-boxes{
    top: -130%;
    gap: 10px;
  }
  .employee-img img{
    height: 140px;
  }
  .team-card{
    padding-top: 85px;
    width: 280px;
  }
  .employee-info{
    top: 25px;
  }
  .team-section h1{
    font-size: 35px;
    line-height: 45px;
  }
  .team-cards{
    gap: 68px;
  }
  .bottom-footer{
    padding-left: 25px;
    padding-right: 25px;
  }
  .bottom-links{
    gap: 10px;
  }
  .case-study-top h2{
    font-size: 32px;
  }
  .case-study-top p{
    font-size: 14px;
  }
  .case-study-bottom h3{
    font-size: 24px;
    line-height: 38px;
  }
  .casestudy-info h4{
    font-size: 26px;
  }
  .casestudy-info p{
    font-size: 14px;
  }
  .casestudy-info a{
    font-size: 14px;
  }

  .casestudy-info img{
    height: 160px;
  }
  .contact-form h4{
  font-size: 28px;
}
.contact-form span{
  font-size: 15px;
}
form select ,form textarea,form input{
  font-size: 14px;
  width: 93%;
}
form textarea::placeholder,form input::placeholder{
  font-size: 14px;
}
.get-start{
  font-size: 14px;
}
.clients h3{
  font-size: 35px;
}
.clients p{
  font-size: 14px;
}
.client-card h6{
font-size: 12px;
}
.client-card span{
  font-size: 12px;
}
.client-card p{
  font-size: 12px;
  margin-top: 10px;
}
.client-card img{
  height: 24px;
}
.clients-info{
  height: 240px;
}
.client-card{
  padding: 8px 12px;
  width: 280px;
  top:20px;
}
.dots-container{
  bottom: 0px;
}
.client-card.next{
  right: -260px !important;
}
.why-choose h2{
  font-size: 24px;
}
.middle-img img{
  width: 340px;
}
.lists{
  width: 52%;
}
.why-choose{
  background-position: 0% 40%;
}
.mobile-logos{
    width: 100%;
  }
  .mobile-logos div{
    padding: 4px 7px;
    gap: 6px;
  
  }
  .mobile-logos div img{
    max-width: 120px;
  }
  .mobile-logos div.whatsapp-mob{
    padding: 4px 10px;
  }
  .btn-primary{
    margin: 20px 0;
  }
  .case-study-heading{
    font-size: 26px;
    margin: 0;
  }
  .heading-line{
    font-size: 14px;
    margin: 20px 0 30px;
  }
  .case-study-points h3{
    font-size:24px ;
  }
  .case-study-points h6{
    font-size: 15px;
  }
  .case-study-points p{
    font-size: 14px;
  }
  .case-study-points ul{
    font-size: 14px;
  }
  .case-study-team h4{
    font-size: 24px;
  }
   .case-study-team p{
    font-size: 14px;
  }
  .hashtag{
    font-size: 15px;
    padding: 6px 14px;
  }
  .case-study-header{
    padding: 25px 20px;
  }
  .case-study-main{
    padding: 0 20px;
  }
  .casestudy-hashtags{
    gap:8px;
  }
  .case-study-hero-sec{
    height: 280px;
  }
    .case-study-hero-sec{
    height: 300px;
  }
  .case-study-hero-sec img{
  width: 100%;
  height: 300px;
}
.slider1 h1{
  font-size: 32px;
}
.slider1 h5{
  font-size: 16px;
 
}
.slider1 h3{
  font-size:19px ;
  margin-top: 20px;
 
}
}
