/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
   /* Hero Logo Styling */
   
   /* 🌈 BACKGROUND */
body {
    
    background: linear-gradient(135deg, #f5f7fa, #e3eeff, #fdfbfb);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
   	overflow-x: hidden;
    align-items: center;
    justify-content: center;
}
.navbar-brand{
    	border: none;
	outline: none;
}
.navdiv{
    display:block;
}
.navdiv ul{
    float:right;
}
.imglogo{width:146px;}

/* CONTAINER */
.hero {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT CONTENT */
.hero-text {
    max-width: 500px;
}

.getstartbtn{
    	padding: 10px !important;
	margin-left: 15px;
	font-size: 12px;
	background: #71db8c !important;
	border-radius: 18px !important;
}
   .hero-text h1 {
	font-size: 61px;
	font-weight: 700;
	color: #222;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #6a11cb, #2575fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #2d5bff;
    color: #fff;
}

.btn-primary:hover {
    background: #1b44d6;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2d5bff;
    color: #2d5bff;
}

.btn-outline:hover {
    background: #2d5bff;
    color: #fff;
}

/* RIGHT FLOATING CARDS */
.hero-visual {
    position: relative;
    width: 450px;
    height: 350px;
}

/* CARD STYLE */
.card {
    position: absolute;
    height: 127px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
    margin-bottom:20px;
}

/* DIFFERENT POSITIONS */
.card1 {
    top: 0;
    left: 50px;
}

.card2 {
    bottom: 30px;
    left: 0;
    animation-delay: 2s;
}

.card3 {
    top: 80px;
    right: 0;
    animation-delay: 4s;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* SMALL DECOR CIRCLE */
.circle {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(45, 91, 255, 0.1);
    border-radius: 50%;
    top: -20px;
    right: -30px;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

.navdiv{
    float:right;
}

.homediv{padding-bottom:104px;box-shadow: 1px 1px 46px #e4e4e4 inset;}

/**************************** card designs start ******************************/

.mainsection{
	padding-bottom: 50px;
	background-color: #fff;
	--dot-color: rgb(94 76 199 / 6%);
	background-image: radial-gradient(var(--dot-color) 1px, transparent 3px);
	background-size: 20px 20px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

.cards .card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
  }

 .cards .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
  }

  .cards .card h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #111;
  }

  .cards .card p {
    font-size: 0.875rem;
    color: #555;
    margin: 8px 0 0 0;
    text-align:left;
  }

  .cards .card .arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
    color: #777;
    transition: color 0.3s;
  }

  .cards .card:hover .arrow {
    color: #111;
  }

  /* Geometric shape decorations */
  .cards .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 15px 0 0 0;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    opacity: 0.3;
    z-index: 0;
  }

  /* Individual card colors */
  .dashboard::after { background: linear-gradient(135deg, #14b8a6, #0d9488); }
  .datasets::after { background: linear-gradient(135deg, #facc15, #f59e0b); }
  .users::after { background: linear-gradient(135deg, #f87171, #ef4444); }
  .realtime::after { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
  .billing::after { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
  .campaign::after { background: linear-gradient(135deg, #fcd34d, #fbbf24); }

  /* Make text above shape */
 .mainsection .card * { position: relative; z-index: 1; }
 
 .offer h1{
     	text-align: center;
	padding: 55px;
	padding-bottom: 16px;
 }
/******************************* card design end *********************************/

/*******************/

.mainsection p{
    text-align:center;
    padding-bottom: 22px;
}

/* HERO SECTION */
.hero1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10%;
    position: relative;
}

/* Gradient Waves Background */
.hero1::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -20%;
    left: -10%;
    background: linear-gradient(120deg, #6a11cb, #2575fc, #00c6ff);
    filter: blur(120px);
    opacity: 0.15;
    animation: waveMove 10s infinite alternate;
    z-index: 0;
}

@keyframes waveMove {
    0% { transform: translateX(-50px) translateY(0); }
    100% { transform: translateX(50px) translateY(30px); }
}

/* LEFT CONTENT */
.hero-text1 {
    max-width: 500px;
    z-index: 1;
}

.hero-text1 h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text1 p {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
}

/* BUTTON */
.btn1 {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn1:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* RIGHT IMAGE */
.hero-img1 img {
    width: 450px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* FEATURES */
.section {
  	padding: 0 10%;
	padding-bottom: 71px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    transition: 0.3s;
}

/* SVG ICON */
.feature-item svg {
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

/* DEFAULT COLOR */
.check {
    stroke: #bbb;
    stroke-width: 3;
    fill: none;
    transition: 0.4s;
}

/* ACTIVE COLOR ON SCROLL */
.feature-item.active .check {
    stroke: #2575fc;
}

/* HOVER */
.feature-item:hover {
    transform: translateX(8px);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-img img {
        width: 300px;
        margin-top: 30px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
/****************/

/*******************************/


/* SECTION */
.entrepreneurs-section {
    position: relative;
    padding: 100px 10%;
    background: #ffffff;
    overflow: hidden;
}

/* SUBTLE ANIMATED BACKGROUND SHADOWS */
.entrepreneurs-section::before,
.entrepreneurs-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 400px;
    height: 400px;
    z-index: 0;
    filter: blur(120px);
    opacity: 0.15;
    animation: floatShadow 12s infinite alternate;
}

.entrepreneurs-section::before {
    top: -100px;
    left: -50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc, #00c6ff);
}

.entrepreneurs-section::after {
    bottom: -100px;
    right: -50px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b, #ffbb00);
    animation-delay: 6s;
}

@keyframes floatShadow {
    0% { transform: translate(0,0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.05); }
    100% { transform: translate(0,30px) scale(1); }
}

/* HEADING */
.entrepreneurs-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* DESCRIPTION */
.entrepreneurs-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

/* FEATURES LIST */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 50px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 17px;
    color: #333;
    transition: 0.3s;
}

.feature-item svg {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    flex-shrink: 0;
    stroke: #2575fc;
    stroke-width: 2;
    fill: none;
}

/* HOVER EFFECT */
.feature-item:hover {
    transform: translateX(8px);
    color: #2575fc;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}
/***********************************/

.handshake-icon {
  display: inline-block;
  animation: bounce 2s infinite alternate;
  transition: filter 0.3s;
}

.handshake-icon:hover {
  filter: drop-shadow(0 0 10px #2575fc);
}

@keyframes bounce {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/*************************** pricing page design start ************************/


/* Bounce animation for icons */
@keyframes iconBounce {
  0%{transform: translateY(0);}
  50%{transform: translateY(-6px);}
  100%{transform: translateY(0);}
}

/* Hover effects */
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.pricing-card button:hover {
  background-position: right center;
}

.plans li{
    font-size:13px;
}
.bg-gradient-circle {
  position:absolute;
  top:-50px; left:-50px;
  width:400px; height:400px;
  background:linear-gradient(45deg,#6a11cb,#2575fc,#00c6ff,#0072ff);
  border-radius:50%;
  filter:blur(100px);
  opacity:0.3;
  animation:moveCircle 12s ease-in-out infinite alternate;
  z-index:0;
}

.bg-gradient-circle::after {
  content:'';
  position:absolute;
  bottom:-60px; right:-60px;
  width:300px; height:300px;
  background:linear-gradient(135deg,#ff416c,#ff4b2b,#00c6ff,#0072ff);
  border-radius:50%;
  filter:blur(80px);
  opacity:0.25;
  animation:moveCircleReverse 15s ease-in-out infinite alternate;
}

@keyframes moveCircle {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px,30px) rotate(45deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

@keyframes moveCircleReverse {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-30px,20px) rotate(-30deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* Icon float animation */
@keyframes iconFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0px); }
}

/* Hover shadow glow for icon */
.support-icon:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transform: scale(1.1);
  transition: all 0.4s ease;
}

/* Bring content above background */
.support-section * {
  position:relative;
  z-index:1;
}
/***************************** pricing page design end *************************/

/*********************************** case study start ********************/

.caseimg img{
    width:100%;
}

.casetitle{}

.casetitle h1{
    	background: linear-gradient(90deg, #6a11cb, #2575fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: left;
	font-size:71px;
}

.casetitle p{
    text-align: left;
	line-height: 36px;
}

/* Section styling */
.enhanced-bumper-offer {
	justify-content: center;
	align-items: center;
	padding: 80px 20px;
	overflow: hidden;
	position: relative;
	min-height: 200px;
	padding-bottom: 27px;
	margin-bottom: 50px;
	border-radius: 36px;
}

/* Offer Card */
.offer-card {
  background: #fff;
  padding: 50px 40px;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}

/* Badge */
.badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff3d00;
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255,61,0,0.5);
  font-size: 0.95rem;
  animation: pulse 2s infinite;
}

/* Headings and paragraph */
.offer-card h2 {
  font-size: 2rem;
  color: #111;
  margin: 25px 0 15px;
  font-weight: 700;
}

.offer-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  font-weight: 700;
}

.countdown div {
  background: #ff3d00;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  min-width: 60px;
}

/* Button */
.btn-offer {
  display: inline-block;
  background: #ff3d00;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255,61,0,0.3);
}

.btn-offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(255,61,0,0.4);
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.1); }
}

/* Confetti canvas */
#confetti {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
/************************************ case study end *******************/

   .modal-content{
        	border-radius: 18px;
	border: 9px solid #f2f2f2;
    }
    
    .modal-title{
        background: linear-gradient(90deg, #6a11cb, #2575fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 19px;
	text-transform: uppercase;
    }
    
    .submitbtn{
        padding: 10px 25px;
	border-radius: 10px;
	background: linear-gradient(90deg, #00c6ff, #0072ff);
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	border: none;
	box-shadow: none;
    }
    .formlabel label{
        	text-transform: uppercase;
	font-weight: 600;
	font-size: 11px;
    }
    
    .modal-body p{
        text-align: center;
	color: #a8a9ac;
	font-size: 14px;
    }
    
    .supportdiv{
        margin-top: 50px;
	border-radius: 35px;
    }
    
    .footercontact p a{
        padding: 8px 0px !important;
	margin: 0;
		text-decoration: none;
	color: #9c9696;
    }
    
    .footercontact p{
        	margin-top: 0;
    }