/* ----------------------------------------------------------------------------------------
* Author        : Payal
* Template Name : Advanced AI Technology Website Template
* File          : Css File
* ---------------------------------------------------------------------------------------- */

/*------------------------------------------------------------------
[Table of contents]

01. Global Variables
02. General Css	
03. Header Css
04. Hero Css
05. AI CARD SECTION css
06. ABOUT SECTION CSS
08. SERVICE SECTION CSS
09. FEATURES SECTION CSS
10. PROJECT SECTION CSS
11. TEAM SECTION CSS
12. REVIEW SECTION CSS
13. FAQ SECTION CSS
14. BLOG SECTION CSS
15. CONTACT SECTION CSS
16. FOTER CSS
17. ABOUT PAGE CSS
18. SERVICE PAGE CSS
19. SERVICE DETAILS PAGE CSS
20. BLOG PAGE CSS
21. COMMON POPUP CSS
22. BLOG DETAIL CSS
23. TEAM DETAIL CSS
24. REVIEW PAGE CSS
25. SEARCH FORM AND POPUP
26. PROJECT PAGE CSS
27. PROJECT DETAIL CSS
28. CONTACT PAGE CSS
29. PAGE LOADING CSS
30. HOME 2 PAGE CSS
31. RESPONSIVE CSS
-----------------------------------------------*/


/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #191A1F;
	--secondary-color		: #F9F9F9;
    --text-gradient1        : #8258c8;
    --text-gradient2        : #2c84c8;
	--text-color			: #000000;
	--accent-color			: #EF6464;
	--white-color			: #FFFFFF;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Space Grotesk", sans-serif;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
    line-height: 26px;
	font-weight: 400;
	color: var(--text-color);
}

p{
	margin-bottom: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 400;
	line-height: 1.2em;
}
h1{
	font-size: 60px;
	line-height: 66px;
}
h2{
	font-size: 50px;
	line-height: 56px;
}
h3{
	font-size: 24px;
	line-height: 30px;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
	display: inline-block;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1600px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.theme-btn{
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	border-radius: 7px;
    background: transparent;
    border: 2px solid var(--accent-color);
	padding: 12px 30px;
	display: inline-block;
	color: var(--white-color) !important;
    transition: 0.3s;
    position: relative;
    z-index: 1;
   font-weight: 500;
}
.theme-btn:before {
    content: '';
    position: absolute;
    transition: 0.3s ease-out;
    bottom: 0; left: 0; right: 0; 
    height: 100%; width: 100%;
    background: var(--accent-color);
    z-index: -1;
}
.theme-btn:hover:before{
    height: 0;
}
.theme-btn:hover{
    color: var(--secondary-color) !important;
    background-color:var(--text-gradient1);
    border-color:var(--text-gradient1);
}
.section-padding{
    padding: 100px 10px;
}
/************************************/
/*** 	   03 HEADER CSS            ***/
/************************************/	
.site-header {
  top: 0;
  left: 0;
  z-index: 999;
  padding: 15px 0;
}
.navbar-dark .navbar-nav .nav-link {
  color: var(--white-color) !important;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #00d0ff;
}
.dropdown-menu {
  border-radius: 10px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.search-icon {
  color: var(--white-color);
  font-size: 18px;
  text-decoration: none;
}

.search-icon:hover {
  color: #00d0ff;
}
.header2 .navbar-dark .navbar-toggler-icon{
    background-image: url('../image/menu-bar.svg') !important;
}
/************************************/
/***   04  HERO SECTION CSS       ***/
/************************************/
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-slide {
  min-height: 650px;
  align-items: center;
  display: flex;
  color: var(--white-color);
}
.banner-slider .banner-slide.slide1{
	background: url('../image/slide1.png') no-repeat center;
	background-size: cover;
}
.banner-slider .banner-slide.slide2{
	background: url('../image/slide2.png') no-repeat center;
	background-size: cover;
}
.banner-slider .banner-slide.slide3{
	background: url('../image/slide3.png') no-repeat center;
	background-size: cover;
}

.banner-slide p {
  opacity: 0.9;
  max-width: 520px;
}

.experience-card {
  background: var(--white-color);
  color: #111;
  border-radius: 18px;
  padding: 20px;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.experience-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.experience-card span {
  font-size: 14px;
  color: #666;
}

.banner-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--white-color);
  opacity: 0.4;
}

.banner-slider .owl-dot.active span {
  opacity: 1;
}
.double-line-text {
	background-color: transparent;
    color: var(--white-color) !important;
    letter-spacing: 0px;
    -webkit-text-stroke-width: 3px;
    stroke-width: 2px;
    -webkit-text-stroke-color: #00000000;
    stroke: #00000000;
    background-image: linear-gradient(262deg, #E24C4A 0%, #386BB7 100%);
	letter-spacing: 2px;
	-webkit-background-clip: text;
}
@supports (-webkit-text-stroke: 1px transparent) {
    .double-line-text {
        -webkit-text-stroke: 3px transparent;
    }
}
.banner-slider .owl-nav {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.banner-slider .owl-nav button {
  width: 54px;
  height: 64px;
  margin: 0 !important;
  background: var(--white-color) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.banner-slider .owl-nav button span {
  display: none;
}
.banner-slider .owl-prev{
	border-radius: 25px 0 0 !important;
}
.banner-slider .owl-prev:before{
	right: 0px;
    border-radius: 0px 0px 20px;
}
.banner-slider .owl-next:before{
	right: 0px !important;
    top: initial !important;
    bottom: -40px;
    box-shadow: 0 -20px 0 0 var(--white-color) !important;
    border-radius: 0px 20px 0px 0px;
}
.banner-slider .owl-prev:before,.banner-slider .owl-next:before{
	content: "";
    position: absolute;
    height: 40px;
    width: 20px;
    top: -40px;
    box-shadow: 0 20px 0 0 var(--white-color);

}
.banner-slider .owl-next{
	border-radius: 0 0 0 25px !important;
}
.banner-slider .owl-nav button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/************************************/
/***      AI CARD SECTION      ***/
/************************************/
.ai-card {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  color: var(--white-color);
  height: 100%;
  overflow: hidden;
}
.ai-card h3{
	font-size: 38px;
	font-weight: 400;
	line-height: 46px;
}
.bg-blue {
	background-image: linear-gradient(120deg, #44B6E9 0%, #45D0BD 100%);
	padding-bottom: 150px;
	z-index: 1;
}
.bg-blue:before{
	content: '';
	background: url('../image/ai-card1.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 300px auto;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.bg-purple::before{
	content: '';
	background: url('../image/ai-card2.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 300px auto;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-purple {
	background-image: linear-gradient(120deg, #BAA9D3 0%, #D3C4E5 100%);
	padding-bottom: 150px;
	z-index: 1;
}

.bg-violet {
    background-color: #AC8DE0;
    background-image: url('../image/ai-card3.png');
    background-position: center right;
    background-repeat: no-repeat;
}

.card-tags span {
  background: var(--white-color);
  color: var(--text-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
  font-weight: 500;
  text-decoration: none;
  margin-top: 20px;
}
.card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: var(--white-color);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.rating img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.stars i {
  color: #ffcc00;
  font-size: 14px;
}

.count {
  font-size: 36px;
  font-weight: 700;
  margin-top: 15px;
}

.icon-top {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
/************************************/
/***       ABOUT SECTION      ***/
/************************************/
.about-hero-section {
    background: url('../image/about-bg.png') no-repeat center;
    background-size: cover;
}
.badge{
    padding: 4px 15px 4px 15px;
	font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}
.text-gradient{
	display: inline-block;
    background-image: linear-gradient(116deg, #8258c8, #2c84c8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.logo-slider img {
    max-width: 70%;
}
.logo-slider .owl-stage{
	display: flex;
	justify-content: center;
	align-items: center;
}

/************************************/
/***       SERVICE SECTION      ***/
/************************************/
.service-card {
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
      margin: 15px 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 10px 0px rgb(0 0 0 / 15%);
}

.service-card .card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  
}

.gradient-purple {
    background-image: linear-gradient(120deg, #BAA9D3 0%, #D3C4E5 100%) !important;
	padding-top: 200px;
	z-index: 1;
}
.gradient-purple:before{
	content: '';
	position: absolute;
	width: 100%;height: 100%;
	background-image: url('../image/service-1-bg.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 200px auto;
	top: 0;
	z-index: -1;
}
.gradient-purple-alt {
    background-color: #8C7AB1 !important;
    background-image: url('../image/awards-bg.png') !important;
    background-position: center center !important;
    background-size: cover !important;
	z-index: 1;
}

.bg-light{background: #ECECEC !important;z-index: 1;}
.bg-light:before{
	content: '';
	position: absolute;
	width: 100%;height: 100%;
	background-image: url('../image/service-3-bg.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 145px auto;
	z-index: -1;
}
.gradient-cyan {
    background-image: linear-gradient(120deg, #44B6E9 0%, #45D0BD 100%) !important;
	z-index: 1;
}
.gradient-cyan:before{
	content: '';
	position: absolute;
	width: 100%;height: 100%;
	background-image: url('../image/service-2-bg.png');
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: 300px auto;
	z-index: -1;
}
.gradient-purple-alt:before{
	content: '';
    position: absolute;
    width: 160px;
    height: 200px;
    background-image: url(../image/xx.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 150px auto;
    z-index: -1;
    bottom: -15px;
    left: 0;	
}
.arrow-icon{
	background: var(--white-color);
	padding: 10px 0 0 10px;
	position: absolute;
	right: 0;
	bottom: 0;
	border-radius: 16px 0 0;
}
.btn-arrow{
    display: inline-block;
	background: var(--text-color);
	padding: 10px;
	border-radius: 16px;
}
.btn-arrow:before, .btn-arrow:after{
	    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 40px;
    width: 20px;
    box-shadow: 0 20px 0 0 var(--white-color);
    z-index: -1;
}
.btn-arrow:before{
	right: 0;
    top: -40px;
    border-bottom-right-radius: 20px;
}
.btn-arrow:after{
	left: -20px;
    border-bottom-right-radius: 20px;
}
.card-title {
  font-weight: 500;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.placeholder-image {
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10PX;
  backdrop-filter: blur(10px);
  margin: 1rem 0;
}

.service-card.bg-light .placeholder-image {
  background: rgba(0, 0, 0, 0.05);
}

.card-bottom {
  border-radius: 10PX;
  margin-top: 1rem;
}

.icon-wrapper {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.integration-section {
	width: 90%;
	background-color: var(--text-color);
	background-image: url('../image/decoration.png');
	background-position: bottom left;
	background-repeat: no-repeat;
	border-radius: 30PX;
	padding: 3rem 3rem 4rem 3rem;
	margin-top: 2rem;
	position: relative;
	overflow: hidden;
}

.integration-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.integration-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:  all 0.3s ease;;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.5);
  transform: scale(1.1);
}
/************************************/
/***       FEATURES SECTION      ***/
/************************************/
.marquee-sec2 {
    position: relative;
    background: -webkit-linear-gradient(left, #45d0bd, #44b6e9);
    background: linear-gradient(90deg, #45d0bd, #44b6e9);
    padding: 5px 0 8px;
    overflow: hidden;
    width: 99.9%;
}
.marquee-sec2 .marquee-inner span {
    font-size: 60px;
	line-height: 100px;
    color: var(--white-color);
}
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}
.marquee-inner {
    display: inline-block;
    -webkit-animation: marquee 20s linear infinite;
    animation: marquee 20s linear infinite;
}
@keyframes marquee{
	0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
}
.features-section .double-line-text{
	font-size: 210px;
    line-height: 220px;
    font-weight: 800;
	-webkit-background-clip: text;
}
.section-intro {
	max-width: 700px;
	margin-bottom: 50px;
}

.content-wrapper {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.mockup-container {
	flex: 0 0 45%;
	position: sticky;
	top: 50px;
}

.mockup-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.mockup-image {
	width: 100%;
	height: auto;
	display: block;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 600px;
	border-radius: 24px;
}

.gradient-blob {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 200px;
	background: linear-gradient(90deg, #00D4FF 0%, #0EA5E9 50%, #2563EB 100%);
	filter: blur(80px);
	opacity: 0.6;
	z-index: -1;
}

.features-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-card {
	background: var(--card-bg);
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: var(--turquoise);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, var(--primary-gradient-start), var(--primary-gradient-end));
	transition: height 0.3s ease;
}

.feature-card:hover::before {
	height: 100%;
}

.feature-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon svg {
	width: 28px;
	height: 28px;
}

.feature-card h3 {
	margin-bottom: 12px;
}

/************************************/
/***       PROJECT SECTION      ***/
/************************************/
.projects-section {
	background-color: var(--text-color);
	padding: 80px 0;
	position: relative;
	border-radius: 50px;
}

.project-card {
	background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
	border-radius: 24px;
	padding: 60px;
	margin-bottom: 40px;
	position: sticky;
	top: 120px;
	transition: all 0.5s ease;
	overflow: hidden;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.project-card:nth-child(1) {
	background: url('../image/project-bg1.png') no-repeat center;
	background-size: cover;
	top: 0;
	z-index: 1;
}

.project-card:nth-child(2) {
	background: url('../image/project-bg2.png') no-repeat center;
	background-size: cover;
	top: 20px;
	z-index: 2;
}

.project-card:nth-child(3) {
	background: url('../image/project-bg3.png') no-repeat center;
	background-size: cover;
	top: 40px;
	z-index: 3;
}

.project-card:nth-child(4) {
	background: url('../image/project-bg4.png') no-repeat center;
	background-size: cover;
	top: 60px;
	z-index: 4;
}

/************************************/
/***       TEAM SECTION CSS      ***/
/************************************/
.team-count {
	font-size: 5rem;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 2px var(--text-color);
	margin-bottom: 16px;
}

.team-member {
	background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
	cursor: pointer;
	border: 1px solid #e5e7eb;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
	background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
	position: relative;
	overflow: hidden;
}

.member-image img {
	width: 100%;
}

.member-role-vertical {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: center;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 2px;
	text-transform: uppercase;
	white-space: nowrap;
}

.social-icons {
	position: absolute;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	transition: all 0.4s ease;
	z-index: 10;
}
.social-icons a{
	width: 40px;
	height: 40px;
	background: var(--text-color);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color) !important;
}
.team-member:hover .social-icons {
	bottom: 20px;
}

.member-info {
	padding: 24px;
	background: var(--white-color);
}

.member-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 4px;
}

.member-title {
	font-size: 0.875rem;
	color: var(--text-light);
}
/************************************/
/***       REVIEW SECTION CSS      ***/
/************************************/
.testimonial-carousel-wrapper {
	background-color: var(--text-color);
	border-radius: 32px;
	padding: 60px 60px 0 60px;
	color: var(--white-color);
	position: relative;
	min-height: 500px;
}

.quote-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	transform: rotate(180deg);
}

.quote-icon svg {
	width: 28px;
	height: 28px;
	fill: var(--white-color);
}

.testimonial-text {
	font-size: 1.5rem;
	line-height: 1.6;
}

.testimonial-author {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel-wrapper .owl-nav {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 77%);
	display: flex;
}

.testimonial-carousel-wrapper .owl-nav button {
	width: 60px !important;
	height: 60px !important;
	background-color: white !important;
	color: var(--text-color) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	transition: all 0.3s ease;
}
.testimonial-carousel-wrapper .owl-nav .owl-prev{
	border-radius: 25px 0 0 0 !important;
}
.testimonial-carousel-wrapper .owl-nav .owl-prev:before{
	content: '';
	position: absolute;
	background: url('../image/corner3.png') no-repeat center;
	bottom: 0;
    left: -20px;
    top: 40px;
    width: 20px;
    height: 20px;
}
.testimonial-carousel-wrapper .owl-nav .owl-next:before{
	content: '';
	position: absolute;
	background: url('../image/corner2.png') no-repeat center;
	bottom: 0;
    right: -20px;
    top: 40px;
    width: 20px;
    height: 20px;
}
.testimonial-carousel-wrapper .owl-nav .owl-next{
	border-radius: 0 25px 0 0 !important;
}

.testimonial-carousel-wrapper .owl-nav button span {
	font-size: 24px;
	color: var(--text-color);
	line-height: 1;
}
.review-title{
	background: url('../image/review-bg.png') no-repeat center;
	background-size: cover;
	border-radius: 30px;
}

.stats-number {
	font-size: 7rem;
	font-weight: 700;
	line-height: 1;
    margin-bottom: 0;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--white-color);
}

.stats-label {
	font-size: 1.25rem;
	font-weight: 600;
	position: relative;
	z-index: 2;
}
/************************************/
/***       FAQ SECTION CSS	     ***/
/************************************/
.faq-section {
	position: relative;
	overflow: hidden;
	background: url('../image/faq-bg.png') no-repeat center;
	background-size: cover;
    border-radius: 25px;
	margin: 0 15px;
}

.accordion-item {
	border: none;
	border-bottom: 2px solid #E5E7EB;
	background: transparent;
	padding: 32px 0;
}

.accordion-item:first-child,
.accordion-item:last-child {
	border-radius: 0;
}

.accordion-button {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--text-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
	background: transparent;
	color: var(--gradient-start);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:hover {
	padding-left: 10px;
}

.accordion-button::after {
	display: none;
}

.faq-icon {
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
	margin-left: 20px;
}

.accordion-button:not(.collapsed) .faq-icon {
	background-color: var(--gradient-start);
	transform: rotate(45deg);
}

.accordion-button:hover .faq-icon {
	transform: rotate(90deg);
}

.accordion-button:not(.collapsed):hover .faq-icon {
	transform: rotate(45deg);
}

.faq-icon i {
	font-size: 18px;
	color: var(--text-color);
	transition: color 0.3s ease;
}

.accordion-body {
	padding: 20px 60px 0 0;
	color: var(--text-color);
}

.accordion-collapse {
	border: none;
}
/************************************/
/***       BLOG SECTION CSS      ***/
/************************************/
.blog-section {
	position: relative;
	overflow: hidden;
}
.blog-bg-decoration {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 200px;
	height: 600px;
	pointer-events: none;
	z-index: 1;
}

.blog-content {
	position: relative;
	z-index: 2;
}

.blog-card {
	background: var(--white-color);
	border-radius: 24px;
	padding: 24px;
	margin-bottom: 30px;
	display: flex;
	gap: 24px;
	align-items: center;
	transition: all 0.3s ease;
	border: 2px solid #ccc;
}
.blog-bg{
	background: url('../image/blog-bg.png') no-repeat center;
	background-size: cover;
}
.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--text-color);
}

.blog-image {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.blog-image span{
	position: absolute;
    right: 15px;
    top: 15px;
} 
.blog-image img {
	width: 100%;
	object-fit: cover;
}

.read-more-link {
	color: var(--accent-color) !important;
	font-weight: 600;
	font-size: 14px;
	text-decoration: underline;
}
/************************************/
/***       CONTACT SECTION CSS    ***/
/************************************/
.contact-section {
	background-color: var(--text-color);
	color: var(--white-color);
	position: relative;
	overflow: hidden;
}

.contact-list {
	list-style: none;
	padding: 0;
}

.contact-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
}

.contact-list i {
	font-size: 18px;
}
.contact-list .icon{
	background: var(--white-color);
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-color);
	border-radius: 100%;
}
.contact-form-wrapper {
	background: var(--white-color);
	border-radius: 32px;
	padding: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.form-control {
	padding: 16px 20px;
	border: 2px solid #E5E7EB;
	border-radius: 12px;
	font-size: 15px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

textarea.form-control {
	min-height: 110px;
	resize: vertical;
}

.send-message-btn {
	background-color: var(--accent-color);
	color: var(--white-color);
	border: none;
	padding: 16px 40px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	width: 100%;
	transition: all 0.3s ease;
	cursor: pointer;
}
/************************************/
/***       FOTER CSS		      ***/
/************************************/
.footer {
	background-color: var(--text-color);
	color: var(--white-color);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.footer:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../image/footer-bg.png');
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: 230px auto;
	z-index: -1;
}
.footer-cta {
	text-align: center;
	padding: 60px 0;
	margin-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
	padding-bottom: 60px;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	height: 50px;
}

.footer-social-icon {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
}

.footer-social-icon a{
	width: 44px;
	height: 44px;
	background-color: #1261A0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--white-color);
	transition: all 0.3s ease;
}

.since-text {
	font-size: 8rem;
	line-height: 1;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 1);
	margin-top: 30px;
}

.footer-links h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 24px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 14px;
}

.footer-links ul li a {
	color: var(--white-color);
	display: inline-block;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom-links {
	display: flex;
	gap: 30px;
}

.footer-bottom-links a {
	color: var(--white-color);
}

.footer-bottom-links a:hover {
	color: var(--white-color);
}
/************************************/
/***       ABOUT PAGE CSS	      ***/
/************************************/
.inner-page-banner{
    background: url(../image/inner-bg.png) no-repeat center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 70px;
}
.about2-section{
	background: url('../image/about-bg-new.png') no-repeat center;
	background-size: cover;
	border-radius: 70px;
}
.sec-title.text-white h2 {
    color: transparent !important;
    -webkit-text-stroke: 1px var(--white-color);
    background: transparent;
	font-size: 36px;
    line-height: 42px;
}
.sec-title h2 ,
.sec-title h3{
    color: transparent !important;
    -webkit-text-stroke: 1px var(--text-color);
    background: transparent;
	font-size: 36px;
    line-height: 42px;
}


.cta-card {
	width: 90%;
	margin: 0 auto;
	background-image: url('../image/cta.png');
	background-position: center center;
	background-size: cover;
	background-color: #433DC0;
	border-radius: 40px;
	padding: 50px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(91, 71, 229, 0.3);
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.cta-title {
	font-size: 3.5rem;
	line-height: 1;
	font-weight: 700;
    color: transparent !important;
    -webkit-text-stroke: 1px var(--white-color);
    background: transparent;
}

.cta-description {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 40px;
	line-height: 1.7;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	background-color: var(--white-color);
	color: var(--text-color);
	border: none;
	padding: 18px 48px;
	border-radius: 12px;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	background-color: #F8FAFC;
	color: var(--text-color);
}
/************************************/
/***       SERVICE PAGE CSS      ***/
/************************************/
.feature-item {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #E5E7EB;
}

.feature-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.feature-header {
	display: flex;
	gap: 20px;
}

.feature-icon i {
	font-size: 28px;
	color: var(--white-color);
}

.feature-icon svg {
	width: 32px;
	height: 32px;
	fill: var(--white-color);
}

.content-card {
	background: url('../image/choose-us-bg.png') no-repeat center;
	background-size: cover;
	border-radius: 24px;
	padding: 60px 50px;
	color: var(--white-color);
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(10, 38, 71, 0.3);
}
/************************************/
/*** SERVICE DETAILS PAGE CSS      ***/
/************************************/
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 12px 15px;
    color: var(--text-color);
	background: #F3F3F3;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-list li:hover,
.service-list li.active {
    background: var(--accent-color);
    color: var(--white-color);
}
/************************************/
/*** 		BLOG PAGE CSS	      ***/
/************************************/
.blog-cards {
    background: var(--white-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-cards:hover {
    transform: translateY(-8px);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-cards:hover img {
    transform: scale(1.08);
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.blog-content {
    padding: 22px;
}

.blog-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 12px;
    line-height: 1.4;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color) !important;
    text-decoration: underline !important;
    display: inline-block;
    margin-bottom: 14px;
}

.blog-date {
    font-size: 13px;
    color: #9aa3b2;
    margin-bottom: 0;
}
/************************************/
/***       COMMON POPUP CSS      ***/
/************************************/
.ai-modal .modal-content {
    border-radius: 18px;
    padding: 10px;
}

.ai-modal .modal-title {
    font-weight: 700;
    color: #0a1f44;
}

.modal-subtitle {
    color: #6b7c93;
}

.ai-modal .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e0e6ed;
}

/************************************/
/***       BLOG DETAIL CSS	      ***/
/************************************/
.blog-meta span {
    font-size: 14px;
    margin-right: 15px;
    color: #6c757d;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.sidebar-box {
    background: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.06);
}

.search-box input {
    border-radius: 8px 0 0 8px;
}

.search-box button {
    border-radius: 0 8px 8px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--text-color);
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s;
}

.comment-box textarea,
.comment-box input {
    border-radius: 8px;
}
/************************************/
/***       TEAM DETAIL CSS	      ***/
/************************************/
.team-img {
    border-radius: 6px;
}

.team-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.team-name {
    font-weight: 700;
    font-size: 28px;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.team-social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #333;
    transition: 0.3s;
}

.team-social-icons a:hover {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

.service-box {
    border: 1px solid #eee;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.service-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-box h5 {
    font-weight: 600;
}

.service-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.service-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-box {
    border: 1px solid #eee;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/************************************/
/***       REVIEW PAGE CSS     ***/
/************************************/
.review-section{
	position: relative;
	z-index: 1;
}
.review-section:after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 751px;
    background: url('../image/shadow.png') no-repeat center;
	background-size: cover;
    z-index: 999;
}
.rating-stars i {
    color: #f5b301;
    font-size: 18px;
    margin: 0 1px;
}

.reviews-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.reviews-title span {
    color: #35c6c6;
}

.masonry {
    column-count: 4;
    column-gap: 24px;
}

.review-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    break-inside: avoid;
    box-shadow: 8px 10px 30px 10px rgba(0, 0, 0, 0.05);
}

.review-card h3 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size:16px;
}

.review-card .stars i {
    color: #f5b301;
    font-size: 14px;
    margin-right: 2px;
}

.review-card p {
    margin-top: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
/************************************/
/***    SEARCH FORM AND POPUP 	  ***/
/************************************/
.search-icon {
    color: var(--white-color) !important;
}

.search-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.search-popup.active {
    display: block;
}

.search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

#searchPopup .search-box {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    margin: auto;
    padding: 30px;
    z-index: 2;
}

.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--white-color);
    cursor: pointer;
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--white-color);
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white-color);
    font-size: 22px;
    padding: 10px;
}

.search-form input::placeholder {
    color: #ddd;
}

.search-form button {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 22px;
    cursor: pointer;
}
/************************************/
/***       PROJECT PAGE CSS    	 ***/
/************************************/
.project-page .project-card {
    border-radius: 18px;
    padding: 30px;
    min-height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all .3s ease;
}

.project-page .project-card h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.project-page .project-card.light {
    background: #f3f3f3;
    border: 1px solid #e5e7eb;
}

.project-page .project-card.purple {
    background: #b59af0;
    color: var(--white-color);
}

.project-page .project-card.teal {
    background: #49d1cc;
    color: var(--white-color);
}

.project-page .project-card.image {
    background-size: cover;
    background-position: center;
    color: var(--white-color);
}

.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,1);
    backdrop-filter: blur(10px);
}
.project-page .project-card.light .tag{
	border-color: var(--text-color);
}

.more {
    font-size: 14px;
    color: var(--white-color);
    text-decoration: none;
}

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.pagination a {
    border: 1px solid #a5b4fc;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    color: #4f46e5;
    text-decoration: none;
}

.pagination a.active,
.pagination a:hover {
    background: #4f46e5;
    color: var(--white-color) !important;
}
/************************************/
/***       PROJECT DETAIL CSS  	 ***/
/************************************/
.project-list {
    list-style: none;
    padding: 0;
}

.project-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.project-list li::before {
    content: "\f105";
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: var(--fa-style,900);
}

.project-meta {
    display: flex;
    gap: 40px;
}

.project-meta h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.media-box {
    background: url('../image/project-bg3.png') no-repeat center;
	background-size: cover;
    border-radius: 20px;
    padding: 120px 20px;
    color: var(--white-color);
}

.media-title {
    font-size: 50px;
    font-weight: 700;
}

.video-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--white-color);
    text-decoration: none;
}
.project-media{
	background: url('../image/project-bg3.png') no-repeat center;
	background-size: cover;
}
.project-gallery img{
	height: 550px;
	object-fit: cover;
	border-radius: 20px;
	width: 100%;
}
.play-btn {
    width: 90px;
    height: 90px;
    background: var(--white-color);
    border-radius: 50%;
    border: 0;
    font-size: 32px;
    cursor: pointer;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.quote-box {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 16px;
}

.quote-box i {
    color: #6366f1;
    font-size: 44px;
}

.gallery-img {
    height: 300px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.stats-box {
    display: flex;
    gap: 40px;
}

.stat h3 {
    font-size: 48px;
	line-height: 1;
    color: #6366f1;
}
/************************************/
/***       CONTACT PAGE CSS		  **/
/************************************/
iframe{
    width: 100%;
}
/************************************/
/***       PAGE LOADING CSS   	 ***/
/************************************/
.preloader {
    position: fixed;
    inset: 0;
    background: #0e0025;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    position: relative;
    width: 230px;
    height: 230px;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}
/************************************/
/***       HOME 2 PAGE CSS   	 ***/
/************************************/
/***       HEADER 2 CSS   	 ***/
.header2{
    top: 10px;
    width: 100%;
    padding: 0 10px;
    left: 0;
}
.header2 .navbar {
    background: var(--white-color);
    border-radius: 10px;
}

.header2 .menu-icon {
    width: 38px;
    height: 38px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.header2 .logo-text {
    font-weight: 700;
    font-size: 22px;
}

.header2 .main-menu .nav-link {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text-color) !important;
    border-radius: 12px;
}

.header2 .header-actions {
    display: flex;
    align-items: center;
}

.header2 .search-btn {
    font-size: 18px;
    color: #111;
}

.header2 .get-touch-btn {
    padding: 12px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #39d0c3, #4facfe);
    color: var(--white-color);
    border: none;
}
/***       BANNER CSS   	 ***/
.ai-hero{
	background: url('../image/home2-banner.png') no-repeat center;
	background-size: cover;
    min-height: 750px;
    display: flex;
    align-items: center;
}
ul.listing {
	column-count: 2;
	gap:40px;
}
.ai-hero p{
	background: var(--white-color);
	padding: 15px;
	border-radius: 10px;
	color: var(--text-color);
}
/* ======= AI HERO CARD CSS ========== */
.ai-services{
	margin-top: -100px;
}
.ai-hero-card {
    position: relative;
    background: var(--white-color);
    padding: 35px 30px;
    border-radius: 18px;
    color: var(--text-color);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
}

.ai-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(120deg, #00f5ff, #7c5cff, #00f5ff);
    background-size: 300% 300%;
    animation: borderFlow 4s linear infinite;
    -webkit-background-clip: padding-box, border-box;
    background-clip: padding-box, border-box;
    z-index: -1;    
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.ai-hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,245,255,0.25);
}

.ai-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.4s ease;
}

.ai-icon i {
    font-size: 30px;
    color: var(--white-color);
}

.ai-icon.purple { background: linear-gradient(135deg, #9b5cff, #5f3bff); }
.ai-icon.blue   { background: linear-gradient(135deg, #00f5ff, #008cff); }
.ai-icon.green  { background: linear-gradient(135deg, #3cff8f, #16a34a); }

.ai-hero-card:hover .ai-icon {
    transform: rotate(10deg) scale(1.15);
}

.ai-hero-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.read-more {
    color: #00f5ff;
    font-weight: 600;
    text-decoration: none;
}
.ai-hero-card .ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(5);
        opacity: 0;
    }
}
/* ========= ABOUT CSS =========== */
.ai-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #dce1ff;
    color: #5f3bff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.ai-about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ai-about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #222;
}

.ai-about-list li::before {
   position: absolute;
    left: 0;
    top: 0;
    color: #5f3bff;
    font-size: 18px;
    content: "\f105";
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: var(--fa-style,900);
}
.ai-about-visual {
    position: relative;
    height: 520px;
    background: #0c1022;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-about-visual .grid-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,245,255,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,245,255,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ai-about-visual img {
    position: relative;
    width: 70%;
    z-index: 2;
    animation: floatAI 5s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatAI {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.ai-media{
	background-attachment: fixed !important;
}
/* ========= AI FEATURES CSS ========== */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 22px;
    color: #5f3bff;
}
/* ======= AI SERVICE SLIDER CSS ========= */
.ai-service-slider {
    background: #f5f6f7;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}

.slider-nav button {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: transparent;
    margin-left: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-nav button:hover {
    background: #111;
    color: var(--white-color);
}

.service-card {
    background: var(--white-color);
    border-radius: 26px;
    padding: 20px;
    position: relative;
}

.service-img {
    border-radius: 20px;
    overflow: hidden;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 22px 0 10px;
    max-width: 85%;
}

.service-arrow {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}
/* ======== ACHIEVEMENT CSS ======== */
.achievement-card-dark {
    background: #0b0b0b;
    border-radius: 28px;
    padding: 50px;
    height: 100%;
}

.achievement-card-dark h2 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
	-webkit-text-stroke: 1.5px #9aa5ff;
}

.achievement-card-dark h3 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.achievement-card-dark p {
    color: #bbb;
    font-size: 16px;
}

.achievement-stat h2 {
    font-size: 72px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #9aa5ff;
}

.achievement-stat h3 {
    font-weight: 600;
    margin-top: 15px;
}

.achievement-stat p {
    font-size: 15px;
    color: #555;
}

.tech-box i {
    font-size: 36px;
    color: #6c7bff;
    margin-bottom: 20px;
}

.tech-box h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-box ul {
    padding-left: 18px;
}

.tech-box ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
}
/* ======= REVIEW SLIDER CSS  ====== */
.ai-review-section {
    background: url('../image/review-bg.jpg') no-repeat center;
	background-size: cover;
}
.ai-review-bg {
	max-width: 80%;
	margin: 0 auto;
	border-radius: 20px;
}
.review-text {
    max-width: 720px;
    margin: 0 auto 35px;
}

.review-author h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.review-author span {
    font-size: 14px;
    color: #777;
}

.ai-review-slider .owl-nav {
    position: absolute;
    width: 100%;
    top: 0;
    transform: translateY(-50%);
}

.ai-review-slider .owl-prev,
.ai-review-slider .owl-next {
    position: absolute;
    font-size: 26px !important;
    color: var(--text-color) !important;
	width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #ddd !important;
    background: transparent;
    margin-left: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.ai-review-slider .owl-prev {
    left: -40px;
}

.ai-review-slider .owl-next {
    right: -40px;
}
/* ====== PRICING CSS ========= */
.ai-pricing-section {
    background: url('../image/pricing-bg.jpg') no-repeat center;
	background-size: cover;
}

.ai-price-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.ai-price-card h3{
    font-size:18px;
}
.ai-price-card .price{
    font-weight:bold;
}
.small-text {
    font-size: 14px;
    color: #777;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    font-size: 15px;
    margin-bottom: 10px;
}

.price-features i {
    color: #6c63ff;
    margin-right: 8px;
}

.price-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid #6c63ff;
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.price-btn:hover {
    background: #6c63ff;
    color: var(--white-color);
}

.ai-price-card.popular {
	background: url('../image/project-bg2.png') no-repeat center;
	background-size: cover;
}

.ai-price-card.popular .price-features i {
    color: var(--white-color);
}

.ai-price-card.popular .small-text {
    color: #ddd;
}

.price-btn.light {
    background: var(--white-color);
    color: #333;
    border-color: var(--white-color);
}
/* ====== CONTACT SECTION CSS ======= */
.ai-contact {
  background: var(--text-color);
}
.contact-form {
  background: var(--white-color);
  padding: 40px;
  border-radius: 18px;
  color: #222;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  border-radius: 18px;
  resize: none;
  height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #7f00ff, #e100ff);
  color: var(--white-color);
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.contact-content .small-title {
  color: var(--accent-color);
  font-size: 13px;
  letter-spacing: 1px;
}
.contact-content p {
  max-width: 520px;
}

.btn-primary {
  background: linear-gradient(90deg, #7f00ff, #e100ff);
  padding: 13px 26px;
  border-radius: 30px;
  color: var(--white-color);
  text-decoration: none;
}

.btn-outline {
  border: 1px solid var(--white-color);
  padding: 13px 26px;
  border-radius: 30px;
  color: var(--white-color);
  text-decoration: none;
}
.btn-outline:hover{
    text-decoration: none;
    background-color:var(--white-color);
    color: var(--text-color);
}

.info-box span {
  font-size: 22px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.info-box small {
  display: block;
  color: #bbb;
}

.info-box strong {
  font-size: 16px;
}
/* ========= BLOG CSS =========== */
.ai-blog-card {
  background: var(--white-color);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.ai-blog-card:hover {
  transform: translateY(-8px);
}

.blog-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.blog-meta {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13px;
  color: #777;
}

.blog-content h3 {
  font-size: 20px;
  color: #0b0d39;
  line-height: 1.4;
  margin-bottom: 18px;
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  color: #0b0d39;
  text-decoration: underline;
  transition: 0.3s;
}

.read-more:hover {
  color: var(--accent-color);
}
/* ========= FOOTER CSS ========== */
.ai-footer {
  background: radial-gradient(circle at top, #1b1f4a, #05071e);
  color: #cfd3ff;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  color: var(--white-color);
  margin-right: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--accent-color);
}

.footer-title {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #7f00ff, #e100ff);
  display: block;
  margin-top: 8px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd3ff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--white-color);
  margin-top: 3px;
  font-size: 16px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-color);
  border-radius: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-policy a {
  color: #cfd3ff;
  margin-left: 15px;
  text-decoration: none;
}

.footer-policy a:hover {
  color: var(--accent-color);
}


/************************************/
/***       Responsive Css     	 ***/
/************************************/
@media(min-width:992px){
 .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media only screen and (max-width: 1300px){

	
}
 @media (max-width: 1199px) {
	
	.marquee-text {
		font-size: 8rem;
	}
}
@media only screen and (max-width: 1024px){
	
	
}

@media only screen and (max-width: 991px){
.section-padding{
    padding: 50px 10px;
}
.banner-slide .row.h-100{
	height: auto !important;
	padding: 90px 0 50px 0;
}
h2 {
    font-size: 40px;
    line-height: 50px;
}
h1 {
    font-size: 44px;
    line-height: 54px;
}
.features-section .double-line-text {
    font-size: 110px;
    line-height: 1;
}
.experience-card{
	bottom: -40px;
}
.navbar-collapse {
    background: rgba(0,0,0,0.85);
    padding: 20px;
    border-radius: 12px;
}
.header2 .navbar-collapse{
    background: var(--white-color);
    padding: 0;
}
.header2 .navbar-dark .navbar-toggler{
    color: var(--text-color) !important;
    border-color: var(--text-color) !important;
}
.content-wrapper {
	flex-direction: column;
}

.mockup-container {
	flex: 1;
	position: relative;
	top: 0;
	width: 100%;
	margin-bottom: 40px;
}

.features-list {
	width: 100%;
}

.marquee-text {
	font-size: 6rem;
}
.contact-form-wrapper {
   padding: 30px;
}
.masonry {
	column-count: 2;
}
.project-gallery img{
	height: 350px;
}
ul.listing{
	column-count: 1;
}
.ai-hero .h-100{
    height: 75% !important;
}
.contact-form{
    padding: 20px;
}
.banner-slider .owl-nav{
    right: 0;
}
}

@media only screen and (max-width: 767px){
.section-padding{
    padding: 50px 10px;
}
.ai-card h3 {
font-size: 22px;
}
h1 {
	font-size: 36px;
	line-height: 46px;
}
h2 {
	font-size: 34px;
	line-height: 44px;
}
.section-intro h2 {
	font-size: 2rem;
}

.marquee-text {
	font-size: 4rem;
}

.feature-card {
	padding: 24px;
}
.experience-card {
	margin-top: 20px;
	position: static;
}
.banner-slide {
    min-height: 90vh;
}
.banner-slide p {
    max-width: 85%;
}
.integration-section{
	width: 100%;
}
.project-card{
	padding: 30px;
}
.testimonial-carousel-wrapper{
	padding: 30px 30px 60px 30px;
}
.testimonial-carousel-wrapper .owl-nav{
transform: translate(-50%, -15%);
}
.blog-card{
	display: block;
}
.contact-form-wrapper{
	padding: 30px;
}
.footer-bottom{
	display: block;
}
.footer-main{
	padding-bottom: 0;
}
.since-text {
    font-size: 4rem;
}
.masonry {
	column-count: 1;
}
.accordion-button{
	font-size: 1.2rem;
}
.project-meta{
	display: block;
}
.ai-review-bg {
    max-width: 100%;
}

.ai-about-visual{
	height: 350px;
}
.review-text {
    max-width: 75%;
}
.blog-content{
    padding: 0;
}
}

@media(max-width: 576px){
 
}

@media only screen and (max-width: 500px){
    
}


