/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Rankio - SEO Agency HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Features css
08. Our Projects css
09. What We Do css
10. Why Choose Us css
11. Our Pricing css
12. Our Testimonials css
13. CTA Box css
14. Our Blog css
15. Footer css
16. About Us Page css
17. Services Page css
18. Service Single css
19. Blog Archive css
20. Blog Single css
21. Projects Page css
22. Project Single css
23. Team Page css
24. Team Single css
25. Pricing Page css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQs Page css
30. Contact Us Page css
31. 404 Error Page css
32. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #FFFFFF;
	--secondary-color			: #FFFFFF0F;
	--bg-color					: #181422;
	--text-color				: #FFFFFF;
	--accent-color				: #045377;
	--accent-secondary-color	: #059EBD;
	--white-color				: #FFFFFF;
	--divider-color				: #FFFFFF0F;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: Georgia, "Times New Roman", serif;
	--gradient-primary-start: #045377;
    --gradient-primary-end: #059EBD;
    --gradient-primary: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/


body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	background-color: var(--bg-color);
	color: var(--text-color);
}

body::before{
	content: '';
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../images/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
    width: 100%;
    height: 100%;
	z-index: -1;
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

::selection{
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}


.btn-call-wave {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #006699 0%, #725DA7 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-call-wave:hover {
  transform: scale(1.03);
}

/* The wave rings */
.pulse-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: rgba(0, 140, 205, 0.4);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulseRing 3s infinite;
  z-index: -1;
}

/* Slightly stagger each ring */
.pulse-wave:nth-child(1) { animation-delay: 0s; }
.pulse-wave:nth-child(2) { animation-delay: 1s; }
.pulse-wave:nth-child(3) { animation-delay: 2s; }

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}


/* === Top Header === */
.top-header {
  padding: 14px 0;
  font-family: var(--default-font);
  color: var(--accent-color);
  font-size: 14px;
  width: 100%;
  /* max-width: 900px;
  margin: 0 auto; */
}


/* Buttons (Book / Hiring) */
.top-btn {
  
  /* background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%); */
  background: var(--gradient-primary); 
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s ease;
}
.top-btn:hover {
  background-color: var(--accent-secondary-color);
  color: #fff;
}

/* Contact Info */
.top-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.top-header a:hover {
  color: #fff;
}
.top-header i {
  color: #187096;
  font-size: 14px;
}

/* Social Icons */
.social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
   line-height: 1; 
}
.social-icon:hover {
  background-color: var(--accent-secondary-color);
  color: #fff;
}

.top-header {
  height: 50px;              /* keep your original height */
  overflow: hidden;          /* 🔥 prevents expansion */
}

.top-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

/*  Bigger circle ONLY for phone & email */
.contact-icon {
  width: 34px;      /* was 28px */
  height: 34px;     /* was 28px */
   flex-shrink: 0;   
  font-size: 16px;  /* icon size bigger */
}

/* Optional: make them stand out slightly */
.contact-icon i {
  font-size: 16px;
}

.contact-icon {
  animation: floatIcon 2.5s ease-in-out infinite;
}

/*  USE translateY ONLY */
@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.company-stats-section {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.company-stats-section .stat-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: transform 0.3s ease;
}

.company-stats-section .stat-item:hover {
  transform: translateY(-5px);
}

.company-stats-section .icon img {
  width: 70px;
  /* height: 70px; */
  filter: brightness(0) invert(1); /* white icons */
}

.company-stats-section .stat-value {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

.company-stats-section .stat-label {
  color: rgba(255,255,255,0.85);
}


/* Responsive fix */
@media (max-width: 768px) {
  .top-header {
    text-align: center;
  }
  .top-header .container {
    /* flex-direction: column; */
    gap: 8px;
  }
}


.company-logo .logo-white {
  filter: brightness(0) invert(1)!important;
}

.navbar-brand.logo img {
    width: 100px;
}
.container{
	max-width: 1300px;
}

.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;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

/* ================================
   UNIVERSAL PREMIUM BUTTON (.btn-default)
   ================================ */
.btn-default {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    background-size: 200% auto;
    border-radius: 100px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 50px 17px 20px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    cursor: pointer;
    z-index: 0;
}

/* Hover → white background + neon glow */
.btn-default:hover {
    background: #fff !important;
	color: var(--accent-color);
    box-shadow: 0 0 15px rgba(5, 158, 189, 0.6), 
                0 0 30px rgba(5, 158, 189, 0.4);
}

/* ================================
   1. ARROW SYSTEM (only if button has arrow)
   ================================ */
.btn-default.has-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
	

    /* initial: white arrow at 45deg */
    background: url('../images/arrow-white.svg') no-repeat center ;
    background-size: cover;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.35s ease-in-out;
    z-index: 2;
	
}

/* Hover → gradient arrow + 0deg */
.btn-default.has-arrow:hover::before {
    background: var(--gradient-primary);
    -webkit-mask: url('../images/arrow-white.svg') no-repeat center;
    mask: url('../images/arrow-white.svg') no-repeat center;
    transform: translateY(-50%) rotate(0deg);	
}

/* ================================
   2. SHINE / LIGHT SWIPE EFFECT
   ================================ */
.btn-default::after {
	
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-default:hover::after {
    left: 120%;
	
}

/* ================================
   3. RIPPLE CLICK EFFECT
   ================================ */
.btn-default:active::before {
    animation: ripple 0.5s ease-out;
}

@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(5,158,189,0.4); }
    70% { box-shadow: 0 0 0 30px rgba(5,158,189,0); }
    100% { box-shadow: 0 0 0 0 rgba(5,158,189,0); }
}

/* ================================
   PREVENT FOOTER / HEADER BUTTONS FROM BEING AFFECTED
   (Subscribe, small CTAs)
   ================================ */

footer .btn-default,
.header .btn-default,
.navbar .btn-default {
    box-shadow: none !important;
    background: var(--accent-secondary-color) !important;
}

footer .btn-default::before,
.header .btn-default::before,
.navbar .btn-default::before {
    display: none !important;
}


.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 20px;
	width: 20px;
	height: 20px;
	background: url('../images/arrow-white.svg') no-repeat;
    background-position: center center;
    background-size: cover;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	
	transform: translateY(-50%) rotate(45deg);
}


/* ==================================
   READ MORE – PREMIUM SMALL BUTTON
   ================================== */

.readmore-btn{
    position: relative;
    display: inline-block;
    overflow: hidden;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    padding: 9px 22px;
    border-radius: 40px;

    /* Initial state */
    background: var(--gradient-primary);
    color: #ffffff;
    border: 1px solid transparent;

    cursor: pointer;
    transition: all 0.35s ease;
    z-index: 0;
}

/* ================================
   HOVER – WHITE BACKGROUND
   ================================ */
.readmore-btn:hover{
    background: #ffffff;
    color: var(--accent-color);
    border-color: rgba(5, 158, 189, 0.35);
    box-shadow: 0 0 12px rgba(5, 158, 189, 0.45),
                0 0 25px rgba(5, 158, 189, 0.3);
}

/* ================================
   SHINE / LIGHT SWIPE EFFECT
   ================================ */
.readmore-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.5s;
    z-index: 1;
}

.readmore-btn:hover::after{
    left: 120%;
}

/* ================================
   RIPPLE CLICK EFFECT
   ================================ */
.readmore-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
}

.readmore-btn:active::before{
    animation: readmore-ripple 0.5s ease-out;
}

@keyframes readmore-ripple{
    0%{
        box-shadow: 0 0 0 0 rgba(5,158,189,0.45);
    }
    70%{
        box-shadow: 0 0 0 30px rgba(5,158,189,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(5,158,189,0);
    }
}

/* ================================
   PRESS FEEDBACK
   ================================ */
.readmore-btn:active{
    transform: scale(0.97);
}

.cb-cursor:before{
	background: linear-gradient(270deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--bg-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-secondary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.bg-section{
	width: 100%;
	max-width: 1860px;
	background-color: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	border-radius: 30px;
	margin: 0 auto;
}

.main-footer .bg-section {
    max-width: 100% !important;
    margin: 0 !important;
    /* border-radius: 0 !important; */
}


.bg-section .container-fluid{
	padding: 0;
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

.section-title-content p:last-child{
	margin-bottom: 0;	
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	position: relative;
	display: inline-block;
	font-size: 14px;
    font-weight: 600;
	text-transform: capitalize;
    color: var(--primary-color);
	padding-left: 18px;
    margin-bottom: 10px;
}

.section-title h3::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.section-title h1{
	font-size: 74px;
	font-weight: 600;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	background: linear-gradient(to right, #ffffff  0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.section-title h1:hover span,
.section-title h2:hover span{
	background-position: right center;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	margin: 0px 0;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	width: 100%;
	z-index: 100;
	background: #fff
}

.header-btn{
	display: flex;
	align-items: center;
}

.header-btn{
    flex-shrink: 0;
}

.header-btn .btn-default{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 clamp(10px, 1vw, 22px);
    height: clamp(36px, 3.5vw, 48px);
    font-size: clamp(12px, 0.9vw, 16px);

    white-space: nowrap;
    border-radius: 50px;   /* keep pill shape */
}



/* header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-bottom: 1px solid var(--divider-color);
	border-radius: 0 0 20px 20px;
	border-radius: 0 !important;
} */


/* ===============================
   TOP HEADER
================================ */
.top-header {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-header {
  width: 100%;
  padding: 14px 0;
}

.top-header-inner {
  padding: 0 50px; /* 🔥 reduce to push more to edges */
}

.top-header.hide {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}


@media (max-width: 768px) {

  .top-header {
    position: relative !important;   /*  remove fixed */
    top: auto !important;
    z-index: auto !important;
    transform: none !important;
  }

}

@media (max-width: 768px) {

  .top-header {
    padding: 6px 0;   /* reduced height */
  }

  .top-header-inner {
    gap: 6px;
    padding: 6px 12px;
  }

}

/* ===============================
   MOBILE TOP HEADER CUSTOM LAYOUT
================================ */

@media (max-width: 768px) {

  /* 🔥 REMOVE FIXED HEIGHT */
  .top-header {
    height: auto !important;
    overflow: visible !important;
  }

  .top-header-inner {
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
  }

  /*  ROW 1 → BUTTONS */
  .top-header-right {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  /*  HIDE CONTACT ICONS */
  .contact-icon {
    display: none !important;
  }

  /*  ROW 2 → SOCIAL ICONS */
  .top-header-left {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* BUTTON STYLE */
  .top-btn {
    font-size: 12px;
    padding: 6px 14px;
    white-space: nowrap;
  }

  /* ICON STYLE */
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  /* 🔥 REMOVE ANY FIXED/STICKY BEHAVIOR */
  /* .top-header,
  header.main-header,
  .header-sticky {
    position: relative !important;
    top: auto !important;
  } */
   @media (max-width: 768px) {

  /*  Keep top header normal */
  .top-header {
    position: relative;
  }

  /*  Sticky main header on scroll */
  header.main-header.scrolled .header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

}
}

/* ===============================
   MAIN HEADER – DEFAULT STATE
================================ */
header.main-header {
	position: relative;
	width: 100%;
	z-index: 999;
}

header.main-header .header-sticky {
	position: relative;
	width: 100%;
	background: rgba(255, 255, 255, 0.55); /* more transparent */
	backdrop-filter: blur(28px) saturate(160%);
	-webkit-backdrop-filter: blur(28px) saturate(160%);

	/* soft glass edge */
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);

	/* lighter, floating shadow */
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);

	transition: all 0.3s ease;
    border-radius: 0;

    /* transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease; */
}

header.main-header .header-sticky::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.35),
		rgba(255, 255, 255, 0.05)
	);
	pointer-events: none;
}


header.main-header,
header.main-header .header-sticky{
	width: 100%;
	max-width: 100%;
	left: 0;
	right: 0;
	margin: 0;
	border-radius: 0;
}


/* ===============================
   MAIN HEADER – ON SCROLL
================================ */
/* ===============================
   MAIN HEADER – ON SCROLL (FIXED)
================================ */
header.main-header.scrolled .header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	width: 100%;
	max-width: 100%;

	margin: 0;
	padding: 0;

	background: rgba(255, 255, 255, 0.55); /* more transparent */
	backdrop-filter: blur(28px) saturate(160%);
	-webkit-backdrop-filter: blur(28px) saturate(160%);

	/* soft glass edge */
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);

	/* lighter, floating shadow */
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	border-radius: 0;

	transform: none !important;
}




.navbar{
	padding: 0;
	align-items: center;
	min-height: 60px;
}

/* INNER CONTENT SPACING – keeps header full width */
header.main-header .container-fluid{
	padding-left: 40px;
	padding-right: 40px;
}

/* ===== LOGO SIZE CONTROL ===== */
.navbar-brand.logo img{
	height: 75px;        /* 👈 change this value if needed */
	width: 75px;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.navbar-brand.logo{
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	flex-shrink: 0;   /* 🔥 VERY IMPORTANT */
}



.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	padding: 8px 10px !important;
	color: #000;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: #0B4C71;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	/* background: linear-gradient(290deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%); */
	background: var(--gradient-primary);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: #fff;
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: linear-gradient(290deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: linear-gradient(290deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--bg-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--bg-color);
}

/* =========================================
   SAME HEADER HEIGHT ON LAPTOP + MOBILE
   (No shrink on scroll)
========================================= */
@media only screen and (max-width: 1199px){

	/* Fixed navbar height */
	header.main-header .navbar,
	header.main-header.scrolled .navbar{
		padding: 10px 0 !important;
		min-height: 70px !important;
	}

	/* Fixed logo size */
	header.main-header .navbar-brand.logo img,
	header.main-header.scrolled .navbar-brand.logo img{
		height: 55px !important;
		width: 55px !important;
	}
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background-image: url('../images/hero-bg-shape.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 50px 0 35px; /* top | bottom */
	z-index: 1;
}

.hero{
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}

.hero.hero-bg-image{
	position: relative;
	background: url('../images/hero-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border: none;
	padding: 100px 0;
	overflow: hidden;
}
.hero.hero-bg-image{
	width: 100%;
	max-width: 100%;
}

/* ===============================
   HERO FULL WIDTH – NO RADIUS
================================ */

/* Remove any rounding from hero */
.hero,
.hero.hero-bg-image,
.hero.hero-bg-image::before,
.hero.hero-bg-image.hero-video,
.hero.hero-bg-image.hero-video .hero-bg-video,
.hero.hero-bg-image.hero-video video {
	border-radius: 0 !important;
}

/* Force hero to ignore container-like behavior */
.hero {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}


.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: #1814227a;
	opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero.hero-bg-image.hero-video{
	min-height: 48vh;
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero.hero-bg-image .hero-content{
	background: transparent;
}

.hero.hero-bg-image .hero-content::after,
.hero.hero-bg-image .hero-content::before{
	display: none;
}

.hero-content{
	position: relative;
	background: url('../images/hero-content-bg-shape.png') no-repeat;
	background-position: top center;
	background-size: contain;
	max-width: 840px;
	text-align: center;
	margin: 0 auto;
}

.hero-content::before,
.hero-content::after{
	content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content::before{
	background-image: url('../images/section-bg-robot-1.png');
	top: -20px;
	left: -200px;
	animation: movestyle1 7s linear infinite alternate;
}

.hero-content::after{
	background-image: url('../images/section-bg-robot-2.png');
	bottom: 30px;
	right: -220px;
	animation: movestyle2 7s linear infinite alternate;
}

@keyframes movestyle1{
	0%{
		transform: translate(0, -25px);
	}	
	100%{
		transform: translate(25px, 10px) rotate(20deg);
	}
}

@keyframes movestyle2{
	0%{
		transform: translate(0, 0);
	}	
	100%{
		transform: translate(25px, -50px) rotate(-20deg);
	}
}

.hero-sub-heading
.hero-content .section-title,
.hero-btn{
	position: relative;
	z-index: 1;
}

.hero-sub-heading{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	margin-bottom: 20px;
	padding: 10px 20px 10px 10px;
}

.hero-sub-heading p{
	font-size: 14px;
	margin-bottom: 0;
}

.satisfy-client-images{
	display: flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
    display: inline-block;
    margin-left: -16px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.hero-sub-heading .satisfy-client-image{
	margin-left: -5px;
}

.satisfy-client-image:first-child{
	margin: 0;
}

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image img{
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.satisfy-client-image.add-more{
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i{
	font-size: 20px;
	color: var(--bg-color);
	transition: all 0.3s ease-in-out;
}

.satisfy-clients-content{
    margin-top: 15px;
}

.satisfy-clients-content p{
	color: var(--white-color);
	margin: 0;
}

.hero-sub-heading .satisfy-client-image img{
	max-width: 20px;
}

.hero-content .section-title p{
	max-width: 770px;
	font-size: 18px;
	margin: 30px auto 0;
}

.hero-company-slider{
	margin-top: 30px;
	text-align: center;
}


@media (max-width: 768px){
	.hero{
		padding: 90px 15px 30px;
	}

	.hero.hero-bg-image.hero-video{
		min-height: 55vh;
	}

	.hero-company-slider{
		margin-top: 30px;
	}
}



.hero-company-slider p{
	font-size: 20px;
	margin-bottom: 30px;
}

.hero-company-slider p span{
	font-weight: 700;
	color: var(--accent-color);
}

.hero-company-slider .company-logo{
	text-align: center;
}

.hero-company-slider .company-logo img{
	width: 100%;
	max-height: 80px;
	filter: grayscale(1);
	transition: all 0.4s ease-in-out;
}

.hero-company-slider .swiper-slide.swiper-slide-active .company-logo img{
	filter: grayscale(0);
}

/* ===============================
   INNER PAGE HERO – FULL WIDTH
================================ */

.page-header {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 100px 0;
	overflow: hidden;
	z-index: 1;
	border-radius: 0 !important;
	

}

/* allow background image / video */
.page-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #1814227a; 
	z-index: 1;
}

/* content above overlay */
.page-header .container,
.page-header .container-fluid {
	position: relative;
	z-index: 2;
}





/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	position: relative;
	padding: 160px 0 80px;
}

.about-us-images{
	position: relative;
	padding: 0 80px 0 100px;
	margin-right: 15px;
}

.about-image figure{
	display: block;
	border-radius: 30px;
}

.about-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.18;
	object-fit: cover;
	border-radius: 30px;
}

.about-skill-box{
	position: absolute;
	top: 15px;
	left: 0;
	width: 255px;
	/* background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%); */
	background: var(--gradient-primary);
    background-size: 200% auto;
	border-radius: 20px;
	padding: 30px;
	animation: skillmoveobject 3s infinite linear alternate;
}

@keyframes skillmoveobject{
	50%{
		left: 40px;
	}
}

.about-skill-title{
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.about-skill-title h3{
	font-size: 16px;
}

.about-skill-box .skills-progress-bar{
	margin-bottom: 20px;
}

.about-skill-box .skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--dark-divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    background: var(--white-color);
	border-radius: 100px;
}

.expert-team-box{
	position: absolute;
	bottom: 40px;
	right: 0;
	background: var(--accent-color);
	border-radius: 20px;
	padding: 20px;
	animation: expertmoveobject 3s infinite linear alternate;
}

@keyframes expertmoveobject{
	50%{
		right: 40px;
	}
}

.about-us-body{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 30px;
}

.about-us-body:last-child{
	margin-bottom: 0;
}

.about-us-body .icon-box{
	/* background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%); */
	background: var(--gradient-primary);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.about-us-body .icon-box img{
	width: 100%;
	max-width: 30px;
}

.about-us-body:hover .icon-box{
	background-position: right center;
}

.about-body-content{
	width: calc(100% - 80px);
}

.about-body-content h3{
	font-size: 20px;
	margin-bottom: 5px;
}

.about-body-content p{
	margin: 0;
}

.about-us-btn{
	margin-top: 40px;
}

/************************************/
/*** 	  06. Our Services css	  ***/
/************************************/

.our-services{
	position: relative;
	padding: 80px 0;
	z-index: 1;
}

.services-nav{
	margin-bottom: 60px;
}

.services-nav .nav-tabs{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px 30px;
	border: none;
}

.services-nav ul li .nav-link{
	position: relative;
	display: flex;
    align-items: center;
	border: none;
    line-height: 1.2em;
	color: var(--white-color);
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 15px 20px;
	overflow: hidden;
}

.services-nav ul li .nav-link.active,
.services-nav ul li .nav-link:hover{
	color: var(--white-color);
	border-color: var(--divider-color);
	background: var(--secondary-color);
}

.services-nav ul li .nav-link::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
	background: var(--gradient-primary);
    /* background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%); */
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.services-nav ul li .nav-link.active::before,
.services-nav ul li .nav-link:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.services-nav ul li .nav-link img{
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.services-nav ul li .nav-link.active img,
.services-nav ul li .nav-link:hover img{
	filter: brightness(0) invert(1);
}

.services-item-box{
	/* background: var(--secondary-color); */
	/* background: linear-gradient(90deg, #003E5C 0%, #5D4FA1 100%); */
	background: var(--gradient-primary);

	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 80px;
}

.services-item .icon-box{
	position: relative;
	background: var(--secondary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
}

.services-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.services-item:hover .icon-box::before{
	transform: scale(1);
}

.services-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.services-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.services-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.services-item-content h3 a{
	color: inherit;
}

.services-item-content p{
	margin: 0;
}

.services-item-content ul{
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.services-item-content ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.services-item-content ul li:last-child{
	margin-bottom: 0;
}

.services-item-content ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, #b4e8ff 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.services-item-btn{
	margin-top: 40px;
}

.services-chart-box{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	margin-left: 20px;
}

.services-chart-content{
	margin-bottom: 20px;
}

.services-chart-content h2{
	font-size: 30px;
	margin-bottom: 5px;
}

.services-chart-content p{
	margin: 0;
}

.services-chart-image{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
}

.services-chart-image img{
	width: 100%;
}

.section-footer-text{
	text-align: center;
	margin-top: 60px;
}

.section-footer-text p span{
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	line-height: 1.2em;
	padding: 3px 12px;
	border-radius: 99px;
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p:hover span{
	background-position: right center;
}

.section-footer-text p{
	margin-bottom: 0;
}

.section-footer-text p a{
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--white-color);
}

/************************************/
/*** 	 07. Our Features css	  ***/
/************************************/

.our-features{
	padding: 80px 0;
}

.features-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.features-item{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background-color: var(--secondary-color);
	background-size: cover;
	background-repeat: no-repeat;
	width: calc(50% - 15px);
	border-radius: 20px;
	padding: 50px;
	overflow: hidden;
}

.features-item.feature-box-1{
	gap: 30px 60px;
	width: 100%;
	background-image: url('../images/features-item-bg-image-1.png');
	background-position: center center;
	padding: 60px;
	background: var(--gradient-primary);
}

.features-item.feature-box-2{
	background-image: url('../images/features-item-bg-image-2.png');
	background-position: top left;
}

.features-item.feature-box-3{
	/* background-image: url('../images/features-item-bg-image-3.png'); */
	/* background: linear-gradient(90deg, #003E5C 0%, #5D4FA1 100%); */
	background: var(--gradient-primary);
	background-position: bottom right;
}

.features-item.feature-box-2,
.features-item.feature-box-3{
	flex-direction: column;
	justify-content: space-between;
}

.features-item.feature-box-1 .features-content{
	width: calc(47% - 30px);
}

.features-btn{
	margin-top: 45px;
}

.features-item.feature-box-1 .features-item-image{
	width: calc(53% - 30px);
}

.features-content .section-title{
	margin: 0;
}

.features-content .section-title h2{
	font-size: 30px;
}

.features-item-image{
	margin: 0 auto;
}

.features-item-image figure{
	display: block;
}

.features-item-image img{
	width: 100%;
	object-fit: cover;
}

/************************************/
/*** 	 08. Our Projects css	  ***/
/************************************/

.our-projects{
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 80px 0 50px;
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-image a{
	display: block;
	cursor: none;
}

.project-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 1.352;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img{
	transform: scale(1.1);
	/* filter: blur(5px); */
	filter: none;
}

.project-btn{
	position: absolute;
	top: 50px;
	right: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.project-btn a{
	position: relative;
	display: block;
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-btn a:hover{
	background-position: right center;
}

.project-btn a img{
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.project-btn a:hover{
	transform: rotate(45deg);
}

.project-content{
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	background: var(--bg-color);
	border-radius: 20px;
	padding: 20px;
	z-index: 2;
}

.project-content p{
	font-size: 14px;
	color: #fff
	text-transform: uppercase;
	margin-bottom: 10px;
}

.project-content h3{
	font-size: 20px;
	line-height: 1.4em;
}

.project-content h3 a{
	color: inherit;
}

/************************************/
/*** 	  09. What We Do css	  ***/
/************************************/

.what-we-do{
	padding: 80px 0;
}

.what-we-do-box-1,
.what-we-do-box-2{
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.what-we-do-image{
	border: 1px solid var(--divider-color);
	border-radius: 30px;
}

.what-we-do-image figure{
	display: block;
	border-radius: 30px;
}

.what-we-do-image img{
	width: 100%;
	aspect-ratio: 1 / 0.848;
	object-fit: cover;
	border-radius: 30px;
}

.what-we-do-item{
	position: relative;
	height: 100%;
	/* background: var(--secondary-color); */
	background: var(--gradient-primary);
	
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 40px;
	padding: 30px;
	overflow: hidden;
}

.what-we-do-counter h2{
	font-size: 40px;
	font-weight: 600;
}

.what-we-do-item-content h3{
	font-size: 20px;
}

.what-we-do-item-content p{
	color: var(--white-color);
	margin: 15px 0 0;
}

.what-we-do-body-image{
	position: absolute;
	top: -30px;
	right: -30px;
}

.what-we-do-body-image figure{
	display: block;
}

.what-we-do-body-image img{
	width: 100%;
	max-width: 200px;
	object-fit: cover;
	animation: movestyle1 7s linear infinite alternate;
}

.what-we-do-image-box{
	position: relative;
	overflow: hidden;
	border-radius: 30px;
}

.what-we-do-image-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 41.17%, rgba(0, 0, 0, 0.80) 100%);
	width: 100%;
	height: 100%;
}

.what-we-do-image-box .what-we-do-image{
	border: none;
}

.what-we-do-image-box .what-we-do-image img{
	aspect-ratio: 1 / 1.81;
}

.what-we-do-info{
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	z-index: 1;
}

.what-we-do-rating{
	margin-bottom: 15px;
}

.what-we-do-rating i{
	color: var(--accent-color);
	margin-right: 2px;
}

.what-we-do-box-2 .what-we-do-item{
	/* background: linear-gradient(90deg, #003E5C 0%, #5D4FA1 100%); */
	background: var(--gradient-primary);
	border: none;
}

.what-we-do-item-content .btn-default{
	background: transparent;
	border: 1px solid var(--white-color);
	padding: 16px 50px 16px 20px;
	margin-top: 40px;
}

.what-we-do-item-content .btn-default:hover{
	background: var(--white-color);
	color: var(--bg-color);
}

.what-we-do-item-content .btn-default:hover::before{
	filter: brightness(0) invert(0);
}

@media (max-width: 767px){

    .what-we-do-image img,
    .what-we-do-image-box .what-we-do-image img{
        aspect-ratio: auto !important;
        height: auto !important;
        object-fit: cover !important;
    }

    .what-we-do-image-box{
        overflow: hidden;
    }

}


/************************************/
/*** 	 10. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	position: relative;
	background-image: url('../images/why-choose-us-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 120px 0;
	/* margin: 80px auto; */
	overflow: hidden;
	z-index: 1;
	background: var(--gradient-primary);
	
}

.why-choose-us.bg-section{
	margin: 80px auto;
}

.why-choose-us::before,
.why-choose-us::after{
	content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.why-choose-us::before{
	background-image: url('../images/section-bg-robot-3.png');
	top: -20px;
	right: -20px;
	animation: movestyle1 7s linear infinite alternate;
}

.why-choose-us::after{
	background-image: url('../images/section-bg-robot-2.png');
	bottom: -50px;
	left: -50px;
	animation: movestyle3 7s linear infinite alternate;
	transform: rotate(40deg);
}

@keyframes movestyle3{
	0%{
		transform: translate(30px, 0) rotate(30deg);
	}	
	100%{
		transform: translate(0, -30px) rotate(50deg);
	}
}

.why-choose-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-choose-list ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.why-choose-list ul li:last-child{
	margin-bottom: 0;
}

.why-choose-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, #b8cdd7 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.why-choose-btn{
	margin-top: 40px;
}

.why-choose-image-box{
    position: relative;
    display: inline-block;   /* VERY IMPORTANT */
    padding-right: 0;
    margin-left: 0;
}



.why-choose-img figure{
	display: block;
}

.why-choose-img img{
	width: 100%;
	aspect-ratio: 1 / 1.13;
	object-fit: cover;
}

/* .why-choose-cta-box{
	position: absolute;
	top: 40%;
	right: 0;
	width: 100%;
	max-width: 200px;
	background: #006697
	;
	border-radius: 20px;
	padding: 20px;
	transition: all 0.4s ease-in-out;
} */

.why-choose-cta-box:hover{
	background: var(--accent-color);
}

.why-choose-cta-box img{
	width: 100%;
	max-width: 40px;
	margin-bottom: 15px;
}

.why-choose-cta-box h3{
	font-size: 14px;
	color: var(--white-color);
}

/* Parent container */
.why-choose-image-box {
    position: relative;
}

/* MAIN IMAGE — move 5px up & 5px right */
.why-choose-img {
    position: relative;
    display: inline-block;
    transform: translate(5px, -5px);
}

/* SVG badge — overlap laptop corner */
.why-choose-cta-box{
	position: absolute;
	top: 55%;
	right: 8%;
	transform: translateY(-50%);

	width: 180px;

	background: #0b5f8a;
	padding: 18px 20px;
	border-radius: 16px;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;

	color: #ffffff;
	box-shadow: 0 16px 40px rgba(0,0,0,0.25);
	z-index: 20;
}


/* INLINE text: 25+ Years Experience */
/* Stack number and text, left-aligned */
.why-choose-cta-box h3 {
    margin: 0;
    display: flex;
    flex-direction: column;   /* number on top, text below */
    align-items: flex-start;  /* left align everything */
    gap: 2px;                 /* small gap between number and text */

    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* Counter with + */
.why-choose-cta-box .counter {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2px;
}

.why-choose-cta-box .counter::after {
    content: "+";
    font-weight: 700;
    font-size: 18px;
}

/* Text below counter */
.why-choose-cta-box .counter-text {
    font-size: 14px;
    font-weight: 400;
    text-align: left;   /* keep text left-aligned */
}

/* Icon (optional) */
.why-choose-cta-box h3 img,
.why-choose-cta-box h3 svg {
    flex-shrink: 0;
    margin-right: 4px; /* if you want some space between icon and number */
}


/* Mobile reset */
/* @media (max-width: 991px) {
    .why-choose-img {
        transform: none;
    }

    .why-choose-cta-box {
        position: static;
        margin-top: 20px;
    }
} */

@media (max-width: 991px){

	.why-choose-img {
		transform: none;
	}

	.why-choose-cta-box {
		top: 60%;
		right: 8%;
	}
}
@media (max-width: 767px){

    .why-choose-image-box{
        padding-right: 0;
        margin-left: 0;
        display: inline-block;
    }

    .why-choose-img{
        transform: none;
    }

    .why-choose-cta-box{
        top: 50%;
        right: 8%;
        transform: translateY(-50%);
        width: 130px;
    }

}


/************************************/
/***     11. Our Pricing css      ***/
/************************************/

.our-pricing{
	padding: 80px 0;
}

.pricing-item{
	position: relative;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('../images/pricing-item-bg.png') no-repeat;
	/* background: linear-gradient(90deg, #003E5C 0%, #5D4FA1 100%); */
	background: var(--gradient-primary);
	background-position: center center;
	background-size: cover;
    border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.pricing-btn,
.pricing-price,
.pricing-header{
	margin-bottom: 40px;
}

.pricing-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pricing-header .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.pricing-item:hover .pricing-header .icon-box{
	background-position: right center;
}

.pricing-header .icon-box img{
	max-width: 30px;
}

.pricing-title{
	width: calc(100% - 80px);
}

.pricing-title h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.pricing-title p{
	margin: 0;
}

.pricing-price h2{
	font-size: 46px;
	font-weight: 600;
}

.pricing-price sub{
	font-size: 16px;
	font-weight: 400;
	bottom: 0;
}

.pricing-btn .btn-default{
	width: 100%;
	text-align: center;
	padding: 17px 20px;
}

.pricing-btn .btn-default::before{
	display: none;
}

.pricing-body{
	background-color: #0597b5;
	border-radius: 20px;
	padding: 30px;
}

.pricing-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-body ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-body ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, #fff 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/* 768px – 991px Pricing Layout Fix */
@media (min-width: 768px) and (max-width: 991px) {

  .our-pricing .row {
    justify-content: center;
  }

  /* Ensure 2 cards per row */
  .our-pricing .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Center the 3rd pricing card */
  .our-pricing .col-md-6:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }
}


/************************************/
/***   12. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	padding: 80px 0;
}

.testimonials-content{
	margin-right: 15px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
}

.testimonial-header,
.testimonial-body{
	padding: 30px;
}

.testimonial-header{
	border-bottom: 1px solid var(--divider-color);
}

.testimonials-rating{
	margin-bottom: 30px;
}

.testimonials-rating i{
	color: var(--accent-color);
	font-size: 18px;
	margin-right: 2px;
}

.testimonials-rating i:last-child{
	margin-right: 0;
}

.testimonial-content p{
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}

.testimonial-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 20px;
}

.testimonial-body .author-image figure{
	border-radius: 50%;
}

.testimonial-body .author-image img{
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-body .author-content{
	width: calc(100% - 70px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.testimonial-body .author-content p{
	color: var(--white-color);
	margin: 0;
}

.testimonial-slider .testimonial-pagination{
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 10px;
    width: 10px;
    background: var(--divider-color);
	opacity: 1;
    margin: 0 10px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border: 1px solid var(--accent-color);
	height: 24px;
	width: 24px;
}

.testimonial-image{
	position: relative;
}

.testimonial-img figure{
	display: block;
	border-radius: 30px;
}

.testimonial-img img{
	width: 100%;
	aspect-ratio: 1 / 1.37;
	object-fit: cover;
	border-radius: 30px;
}

.review-rating-box{
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	width: 100%;
	max-width: 210px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}

.review-rating-box .satisfy-client-images{
	margin-bottom: 15px;
}

.review-rating-box .satisfy-client-image{
	border-color: var(--white-color);
}

.review-rating-star{
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
}

.review-rating-star i{
	color: var(--accent-color);
	margin-right: 3px;
}

.review-rating-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.review-rating-content p span{
	color: var(--accent-color);
	font-weight: 600;
}

/************************************/
/*** 	   13. CTA Box css  	  ***/
/************************************/

.cta-section{
	padding: 80px 0;
}

.cta-box{
	position: relative;
	padding: 120px 20px;
	/* background: var(--secondary-color) url('../images/cta-box-bg.png'); */
	/* background: linear-gradient(90deg, #003E5C 0%, #5D4FA1 100%); */
	 background: var(--gradient-primary);

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
}

.cta-box::before,
.cta-box::after{
	content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-box::before{
	background-image: url('../images/section-bg-robot-1.png');
	top: 80px;
	left: 70px;
	animation: movestyle1 7s linear infinite alternate;
}

.cta-box::after{
	background-image: url('../images/section-bg-robot-2.png');
	bottom: 70px;
	right: 80px;
	animation: movestyle2 7s linear infinite alternate;
}

.cta-box-content{
	position: relative;
	max-width: 650px;
	text-align: center;
	margin: 0 auto;
	z-index: 1;
}

.cta-box-body{
	max-width: 570px;
	margin: 0 auto;
}

.cta-box-body .form-group{
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-right: none;
	border-radius: 100px;
}

.cta-box-body .form-group .form-control{
	width: 76%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.cta-box-body .form-group .form-control::placeholder{
	color: var(--white-color);
}

.cta-box-body .form-group .btn-default{
	width: 24%;
	padding: 17px;
}

.cta-box-body .form-group .btn-default:before{
	display: none;
}

/************************************/
/*** 	   14. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 80px 0 130px;
}

.post-item{
	background: var(--secondary-color) url('../images/post-item-bg.png');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.post-featured-image{
	margin-bottom: 20px;
}

.post-featured-image a,
.post-featured-image figure{
    cursor: none;	
    display: block;
	border-radius: 20px;
    overflow: hidden;
}
/* .post-featured-image a {
  color: transparent;  
} */

.post-featured-image a {
  text-decoration: none;
  color: inherit;
}
.post-featured-image img{
    aspect-ratio: 1 / 0.692;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	padding: 10px 30px;
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

#blog-container .post-item h2 a,
#blog-container .post-item h3 a {
    color: #ffffff !important;
}

/* ===============================
   Blog Title – Consistent Size
================================ */

/* Blog listing page */
#blog-container .post-item h2 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}

/* Homepage blog titles */
#homepage-blog-container .post-item h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
}

/* Link styling */
#blog-container .post-item h2 a,
#homepage-blog-container .post-item h3 a {
    color: #ffffff;
    transition: color 0.3s ease;
}

#blog-container .post-item h2 a:hover,
#homepage-blog-container .post-item h3 a:hover {
    color: #ffffff;
}



#homepage-blog-container .post-item h3 a {
    color: #ffffff;
}



/* Title turns white on hover */
.post-item h2 a:hover {
  color: #ffffff;
}

#homepage-blog-container .post-item:hover h3 a {
    color: #ffffff;
}


/************************************/
/*** 	  	15. Footer css		  ***/
/************************************/


.footer-box{
	background-image: url('../images/footer-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 40px; /* bottom included */
	width: 100%;
	border-radius: 26px 26px 0 0;
}

.footer-box{
	padding-bottom: 25px;
}

.footer-header{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title{
	margin-bottom: 0;
}

.footer-header .section-title h2{
	font-size: 100px;
}

.footer-contact-item h3{
	font-size: 24px;
	margin-bottom: 15px;
}

.footer-contact-item h2{
	font-size: 36px;
}

.footer-contact-item h3,
.footer-contact-item h2{
	color: var(--white-color);
	font-weight: 600;
}

.footer-contact-item h3 a,
.footer-contact-item h2 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item h3 a:hover,
.footer-contact-item h2 a:hover{
	color: var(--accent-color);
}

.footer-logo,
.about-footer-content{
	margin-bottom: 10px;
}

.footer-logo img{
	width: 100%;
	max-width: 120px;
}

.about-footer-content p{
	margin-bottom: 0;
}

.footer-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin: 0;
}

.footer-social-links ul li a{
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	background: var(--white-color);
}

.footer-social-links ul li a i{
    font-size: 18px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	/* margin-left: 3.646vw; */
}
.footer-bottom{
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.08);
	text-align: center;
}

.footer-bottom p{
	margin: 0;
	font-size: 16px;            /* SAME as footer content */
	line-height: 1.7em;         /* SAME reading rhythm */
	font-weight: 400;
	/* color: var(--body-text-color);
	opacity: 0.75;               */
}




.footer-links{
	max-width: 43%;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links p:last-child{
	margin-bottom: 0;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: #61cdff;
}

.footer-newsletter-form{
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 100px;
}

.footer-newsletter-form .form-group .form-control{
	width: 65%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	color: var(--white-color);
	background: transparent;
	border-radius: 0;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default{
	width: 35%;
    padding: 14px;
}

.footer-newsletter-form .form-group .btn-default::before{
	display: none;
}

    /* ===== NEW FOOTER HEADER FIX ===== */

.footer-header-custom {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

/* LEFT SIDE */
.footer-left h2 {
    font-size: 85px; /* increased slightly */
    line-height: 1.2;
    margin-bottom: 20px;
}

/* FIXED SPAN (MATCH YOUR SITE STYLE) */
.footer-left h2 span {
    color: var(--accent-secondary-color);
}
.footer-contact-info p {
    margin: 0 0 10px;
    font-size: 18px;
}

.footer-contact-info a {
    color: var(--white-color);
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: var(--accent-secondary-color);
}

.footer-form-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-form-title span {
    color: var(--accent-secondary-color);
}



/* RIGHT SIDE FORM */
.footer-contact-form-box {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* INPUTS */
.footer-contact-form-box .form-control {
    background: #1f1b2e;
    border: 1px solid var(--dark-divider-color);
    color: var(--white-color);
    border-radius: 8px;
}

.footer-contact-form-box .form-control:focus {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(5,158,189,0.2);
}

/* BUTTON */
.footer-contact-form-box .btn-default {
    background: var(--gradient-primary);
    border: none;
    padding: 14px;
}

/* Placeholder Color Fix */
.footer-contact-form-box .form-control::placeholder {
    color: var(--white-color) !important;
    opacity: 0.8;
}

/* For better browser support */
.footer-contact-form-box .form-control::-webkit-input-placeholder {
    color: var(--white-color);
}
.footer-contact-form-box .form-control::-moz-placeholder {
    color: var(--white-color);
}
.footer-contact-form-box .form-control:-ms-input-placeholder {
    color: var(--white-color);
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-left h2 {
        font-size: 48px;
    }
}

/* .footer-copyright{
	padding: 40px 0;
	text-align: center;
}

.footer-copyright-text p{
	margin-bottom: 0;
} */

/************************************/
/*** 	 16. About Us Page css	  ***/
/************************************/

.page-header{
	background: var(--secondary-color) url('../images/page-header-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	padding: 135px 0;
}

.page-header-box{
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
	font-size: 74px;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span{
	background-position: right center;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	color: var(--text-color);
	font-size: 18px;
	line-height: normal;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: var(--text-color);
}

.our-approach{
	position: relative;
	padding: 80px 0;
	z-index: 1;
}

.approach-item-boxes{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 30px;
}

.approach-item{
	background: var(--secondary-color) url('../images/approach-item-bg.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
}

.approach-item-content{
	padding: 30px 30px 0 30px;
	margin-bottom: 50px;
}

.approach-item-boxes .approach-item-content{
	margin-bottom: 35px;
}

.approach-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.approach-item-content p{
	margin: 0;
}

.approach-img{
	text-align: center;
}

.approach-img img{
	width: 100%;
}

.approach-item.approach-box-2 .approach-img{
	padding: 0 20px 0 20px;
}

.approach-item.approach-box-2 .approach-img img{
	border-radius: 10px 10px 0 0;
}

.approach-item.approach-box-3 .approach-img{
	text-align: right;
}

.approach-item.approach-box-3 .approach-img img{
	width: auto;
}

.how-it-work{
	position: relative;
	padding: 80px 0;
	z-index: 1;
}

.how-work-content{
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.work-step-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.work-step-item{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 30px;	
	overflow: hidden;
}

.work-step-item:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.work-step-item.active:before,
.work-step-item:hover:before{
	height: 100%;
	border-radius: 0;
}

.work-step-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	overflow: hidden;
}

.work-step-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.work-step-item.active .icon-box:before,
.work-step-item:hover .icon-box:before{
    transform: scale(1);
}

.work-step-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.work-step-item.active .icon-box img,
.work-step-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.work-step-content{
	position: relative;
	z-index: 1;
}

.work-step-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.work-step-content p{
	color: var(--white-color);
	margin: 0;
}

.our-team{
	padding: 80px 0 50px;
}

.team-item{
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
}

.team-image a,
.team-image figure{
	display: block;
	border-radius: 30px;
	cursor: none;
	overflow: hidden;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.085;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 5px 0 0;
}

.team-social-icon{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	text-align: center;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	transform: translateY(0%);
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin: 0;
}

.team-social-icon ul li a{
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover{
	background-position: right center;
}

.team-social-icon ul li a i{
    font-size: 18px;
    /* background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent; */
	color: var(--white-color);
}

.our-faqs{
	padding: 80px 0 160px;
}

.faqs-image-box{
	margin-right: 15px;
}

.faq-image figure{
	display: block;
	border-radius: 30px;
}

.faq-image img{
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 30px;
}

.faq-accordion .accordion-item{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 30px;
    padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: var(--primary-color);
	padding: 20px 55px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: var(--divider-color);
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 30px;
    top: 50%;
	font-size: 18px;
    transform: translateY(-50%);
	color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(45deg);
	color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	border-top: 1px solid var(--divider-color);
	padding: 20px 55px 20px 30px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--primary-color);
	margin: 0;
}

/************************************/
/*** 	 17. Services Page css	  ***/
/************************************/

.page-services{
	padding: 160px 0 50px;
}

.page-services .services-item{
	background: var(--secondary-color) url('../images/service-item-bg.png');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.our-testimonials.service-our-testimonials{
	padding: 80px 0 160px;
}

/************************************/
/*** 	18. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 160px 0;
}

.page-single-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 15px;
}

.page-category-list{
	border: 1px solid var(--divider-color);
	background: var(--secondary-color) url('../images/page-category-list-bg.png') no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
    margin-bottom: 60px;
	padding: 40px;
	overflow: hidden;
}

.page-category-list h3{
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.page-category-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li{
	text-transform: capitalize;
	line-height: 1.5em;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-category-list ul li a{
    position: relative;
    display: block;
    color: var(--white-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover{
    color: var(--accent-color);
}

.page-category-list ul li a::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	background: url('../images/arrow-accent.svg') no-repeat;
	background-size: cover;
	background-position: center center;
    width: 22px;
    height: 22px;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
}
	
.sidebar-cta-body{
	padding: 30px;	
}

.sidebar-cta-image,
.sidebar-cta-logo{
	margin-bottom: 30px;
}

.sidebar-cta-image figure{
	display: block;
	border-radius: 20px;
}

.sidebar-cta-image img{
	width: 100%;
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image img{
	transform: scale(1.1);
}

.sidebar-cta-logo img{
	width: 100%;
	max-width: 174px;
}

.cta-item-content p{
	margin-bottom: 0;
}

.sidebar-cta-contact a{
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 600;
	padding: 15px 30px;
	color: inherit;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact a:hover{
	background-position: right center;
}

.sidebar-cta-contact a img{
	width: 100%;
	max-width: 30px;
}

.page-single-image{
    margin-bottom: 40px;
}

.page-single-image figure{
    display: block;
    border-radius: 30px;
}

.page-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
    font-size: 46px;
	font-weight: 600;
	letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry h2:last-child{
	margin-bottom: 0;
}

.service-entry h2 span{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.service-entry h2:hover span{
	background-position: right center;
}

.service-entry ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-entry ul{
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.service-entry ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.service-solutions-box,
.service-result-box,
.service-growth-box{
	margin-top: 60px;
}

.solutions-content-list{
	margin: 40px 0;
}

.solutions-content-item{
	margin-bottom: 30px;
}

.solutions-content-item:last-child{
	margin-bottom: 0px;
}

.solutions-content-item h3{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.solutions-content-item h3::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.solution-info-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.solution-counter-box,
.service-solution-img{
	width: calc(50% - 15px);
}

.solution-counter-box{
	border: 1px solid var(--divider-color);
	background: var(--secondary-color) url('../images/solution-counter-box-bg.png') no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
}

.solution-counter-box{
	padding: 40px 35px;
}

.solution-counter-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.solution-counter-no h2{
	letter-spacing: 0;
}

.solution-counter-no h2 span{
	-webkit-text-fill-color: var(--white-color);
}

.solution-counter-header .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.solution-counter-box:hover .solution-counter-header .icon-box{
	background-position: right center;
}

.solution-counter-header .icon-box img{
	width: 100%;
	max-width: 30px;
}

.solution-counter-body{
	margin-top: 40px;
}

.solution-counter-body ul{
	margin: 0;
}

.service-solution-img figure{
	display: block;
	border-radius: 30px;
}

.service-solution-img img{
	width: 100%;
	aspect-ratio: 1 / 0.51;
	object-fit: cover;
	border-radius: 30px;
}

.service-result-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color) url('../images/service-result-list-bg.png') no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
	padding: 40px;
	margin-top: 40px;
}

.service-result-item{
	width: calc(50% - 15px);
}

.service-result-item .icon-box{
	position: relative;
	background: var(--secondary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
}

.service-result-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box::before{
	transform: scale(1);
}

.service-result-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-result-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.service-result-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.service-result-item-content p{
	margin: 0;
}

.service-growth-info-image{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-growth-item,
.service-growth-image{
	width: calc(50% - 15px);
}

.service-growth-item{
	border: 1px solid var(--divider-color);
	background: var(--secondary-color) url('../images/service-growth-item-bg.png') no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
	padding: 40px;
}

.service-growth-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-growth-header .icon-box a{
	width: 50px;
	height: 50px;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.service-growth-header .icon-box a:hover{
	background-position: right center;
}

.service-growth-header .icon-box a img{
	width: 100%;
	max-width: 26px;
	transition: all 0.3s ease-in-out;
}

.service-growth-header .icon-box a:hover img{
	transform: rotate(45deg);
}

.service-growth-image figure{
	display: block;
	border-radius: 30px;
}

.service-growth-image img{
	width: 100%;
	aspect-ratio: 1 / 1.185;
	object-fit: cover;
	border-radius: 30px;
}



/************************************/
/*** 	  19. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 160px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--dark-divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
}

/************************************/
/*** 	  20. Blog Single css	  ***/
/************************************/


.page-single-post{
	padding: 160px 0;
}

.post-single-meta{
	margin-top: 5px;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 30px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

/* Gradient text links inside blog content */
.post-entry a {
    background: linear-gradient(
        to right,
        #ffffff 0%,
        var(--accent-secondary-color) 50%,
        var(--accent-color) 100%
    );
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    font-weight: 600;
    text-decoration: none;
    transition: background-position 0.3s ease;
}


/* Justify ONLY readable content */
.post-entry p,
.post-entry li {
    text-align: justify;
    text-justify: inter-word;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 600;
	line-height: 1.2em;
	margin: 0 0 0.44em;
	text-align: left;
    word-spacing: normal;
}

.post-entry h1{
	font-size: 74px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--secondary-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
    color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-position: right center;
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
    color: var(--white-color);
	border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-position: right center;
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 21. Projects Page css	  ***/
/************************************/

.page-projects{
    padding: 160px 0 130px;
}

/************************************/
/*** 	22. Project Single css	  ***/
/************************************/

.page-project-single{
	padding: 160px 0;
}

.page-category-list.project-category-list ul li{
	display: flex;
	gap: 20px;
}

.page-category-list.project-category-list ul li span{
	font-weight: 600;
}

.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
    font-size: 46px;
	font-weight: 600;
	letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.project-entry h2:last-child{
	margin-bottom: 0;
}

.project-entry h2 span{
	background: linear-gradient(90deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.project-entry h2:hover span{
	background-position: right center;
}

.project-entry ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-entry ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.project-execution-box,
.project-progress-box,
.project-approach-box{
	margin-top: 60px;
}

.project-execution-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-execution-content,
.execution-item-list{
	width: calc(50% - 15px);
}

.project-execution-image{
	margin-top: 40px;
}

.project-execution-image figure{
	display: block;
	border-radius: 30px;
}

.project-execution-image img{
	width: 100%;
	aspect-ratio: 1 / 0.77;
	object-fit: cover;
	border-radius: 30px;
}

.execution-item{
	display: flex;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color) url('../images/execution-item-bg.png') no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 30px;
	margin-bottom: 30px;
	padding: 30px;
}

.execution-item:last-child{
	margin-bottom: 0;
}

.execution-item .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.execution-item:hover .icon-box{
	background-position: right center;
}

.execution-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.execution-item-content{
	width: calc(100% - 80px);
}

.execution-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.progress-info-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	margin-top: 30px;
	padding: 40px;
}

.progress-content,
.progress-image{
	width: calc(50% - 15px);
}

.progress-content ul{
	margin: 30px 0 0;
}

.progress-image figure{
	display: block;
	border-radius: 30px;
}

.progress-image img{
	width: 100%;
	aspect-ratio: 1 / 0.92;
	object-fit: cover;
	border-radius: 30px;
}

.project-approach-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-approach-item-list .execution-item{
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.project-approach-list{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

/************************************/
/*** 	  23. Team Page css 	  ***/
/************************************/

.page-team{
    padding: 160px 0 130px;
}

/************************************/
/*** 	  24. Team Single css	  ***/
/************************************/

.page-team-single{
    padding: 160px 0 80px;
}

.team-single-image{
    margin-right: 15px;
}

.team-single-image figure{
    display: block;
    border-radius: 30px;
}

.team-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.974;
    border-radius: 30px;
}

.team-contact-info-box{
    background: var(--secondary-color) url('../images/team-contact-info-box-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    overflow: hidden;
}

.team-contact-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
}

.team-contact-box{
    width: calc(50% - 15px);
    display: flex;
}

.team-contact-box .icon-box{
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box{
    background-position: right center;
}

.team-contact-box .icon-box img{
    width: 100%;
    max-width: 25px;
}

.team-contact-content{
    width: calc(100% - 65px);
}

.team-contact-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-contact-content p{
    margin: 0;
}

.member-social-list{
    background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
    padding: 20px 30px;
}

.member-social-list h3{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
	margin-right: 0;
}

.member-social-list ul li a{
	color: var(--primary-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
    background-color: var(--white-color);
	color: var(--accent-color);
}

.member-social-list ul li a i{
    color: inherit;
    font-size: 18px;
}

.team-experience{
    padding: 80px 0;
}

.team-experience-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-experience-list ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.team-experience-list ul li:last-child{
	margin-bottom: 0;
}

.team-experience-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.team-skills-form{
    padding: 80px 0 160px;
}

.contact-us-form{
    background: var(--secondary-color) url('../images/contact-us-form-bg.png');
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 40px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.contact-form .btn-default{
	width: 100%;
	padding: 17px;
}

.contact-form .btn-default::before{
	display: none;
}

.team-skills-content{
    margin-left: 15px;
}

.team-skills-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-skills-list .skills-progress-bar{
    width: calc(50% - 15px);
}

.team-skills-list .skills-progress-bar .skill-data{
    margin-bottom: 20px;
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress .count-bar{
    background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.team-skills-disc{
	margin-top: 40px;
}

.team-skills-disc p{
    margin-bottom: 0;
}

/************************************/
/*** 	 25. Pricing Page css	  ***/
/************************************/

.page-pricing{
    padding: 160px 0 80px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials{
    padding: 160px 0 50px;
}

.page-testimonials .testimonial-item{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/*** 	 27. Image Gallery css	  ***/
/************************************/

.page-gallery{
    padding: 160px 0 130px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 30px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	 28. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 160px 0 130px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-color);
	border-radius: 30px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after{
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
	color: var(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after{
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	  29. FAQs Page css 	  ***/
/************************************/

.page-faqs{
    padding: 160px 0;
}

.page-faqs .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
    margin-bottom: 0px;
}



/* FAQ Section */

.faq-section {
  
  padding: 100px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Optional gradient top border to match w3era style */
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 5px;
  border-radius: 10px;
  background: linear-gradient(90deg, #181422, #00A8CC);
}

/* Section Title Styling */
.faq-section .section-title h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-section .section-title h2 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 38px;
}

.faq-section .section-title h2 span {
  color: #00a9c7;
}

/* Accordion Styling */
.faq-section .accordion-item {
  background-color: #181422;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-section .accordion-button {
  background-color: #181422;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  padding: 18px 20px;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #181422, #00A8CC);
  color: #FFFFFF;
}

.faq-section .accordion-body {
  background-color: #181422;
  color: #FFFFFF;
  font-size: 16px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.7;       /* ✅ Increased line spacing */


  
}

/************************************/
/*** 	30. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
    padding: 160px 0;
}

.contact-us-content{
    margin-right: 20px;
}

.contact-info-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.contact-info-item{
    width: calc(50% - 15px);
    display: flex;
}

.contact-info-item .icon-box{
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
    margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box{
    background-position: right center;
}

.contact-info-item .icon-box img{
    width: 100%;
    max-width: 20px;
}

.contact-item-content{
    width: calc(100% - 55px);
}

.contact-item-content h3{
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 5px;
}

.contact-item-content p{
    margin: 0;
}

.contact-item-content p a{
    color: inherit;
}

.contact-cta-box{
    background-color: var(--secondary-color);
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
	padding: 20px;
}

.contact-image{
    position: relative;
    padding-right: 30px;
}

.contact-img figure{
    display: block;
    border-radius: 20px;
}

.contact-img img{
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 0.765;
    object-fit: cover;
    border-radius: 20px;
}

.contact-image .icon-box{
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 0;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border: 2px solid var(--bg-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-cta-box:hover .contact-image .icon-box{
    background-position: right center;
}

.contact-image .icon-box img{
	width: 100%;
	max-width: 30px;
}

.contact-cta-content p{
    margin-bottom: 20px;
}

.contact-cta-content h3{
    font-size: 30px;
    line-height: 1.4em;
}

.contact-cta-content h3 a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-cta-content h3 a:hover{
    color: var(--accent-color);
}

.google-map-iframe{
	margin-top: 160px;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 500px;
	border-radius: 30px;
}

.google-map-iframe iframe{
	filter: grayscale(100%) brightness(0.7);
	transition: all 0.3s ease-in-out;
}

.google-map-iframe:hover iframe{
	filter: grayscale(0%) brightness(1);
}

/************************************/
/*** 	31. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 160px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

/* 
@media only screen and (max-width: 1860px){
	
	.bg-section{
		max-width: calc(100% - 40px);
		margin: 0 20px;
	}
} */


@media only screen and (max-width: 1286px){

	.main-menu ul li a{
		font-size: 15px;   /* slightly reduce text */
		padding: 14px 10px !important;  /* reduce horizontal spacing */
		white-space: nowrap;  /* prevent text break */
	}

}

@media only screen and (max-width: 1024px){

	.navbar{
		padding: 30px 20px;
	}

	.main-menu ul li{
		margin: 0;
	}

	.main-menu ul li a{
		padding: 14px 8px !important;
	}
}

@media only screen and (max-width: 991px){
	
	.btn-default{
		padding: 14px 40px 14px 15px;
	}
	
	.btn-default::before{
		right: 15px;
		width: 18px;
    	height: 18px;
	}

	header.main-header{
		border-bottom: 1px solid var(--dark-divider-color);
		margin: 0;
	}

	header.main-header .header-sticky.active{
		border-radius: 0px;
	}
	
	.navbar{
		padding: 20px 0;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
		display: block;
    }
	
	.header-btn{
		display: none;
	}

	.bg-section{
		max-width: 100%;
		border: none;
		border-radius: 0;
		margin: 0;
	}

	.bg-section .container-fluid{
		padding: 0 15px;
	}
	
	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title.section-title-center{
		max-width: 100%;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 52px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
        margin-top: 10px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}

	.hero{
		padding: 80px 0;
	}

	.hero.hero-bg-image{
		padding: 80px 0;
	}

	.hero-content::before,
	.hero-content::after{
		width: 80px;
		height: 80px;
		opacity: 30%;
	}

	.hero-content::before{
		top: -40px;
		left: -10px;
	}

	.hero-content::after{
		bottom: -50px;
		right: 15px;
	}

	.hero-sub-heading{
		padding: 6px 15px 6px 10px;
	}

	.hero-content .section-title p{
		font-size: 16px;
		margin: 10px 0 0 0;
	}

	.hero-company-slider{
		margin-top: 70px;
	}

	.hero-company-slider p{
		font-size: 18px;
		margin-bottom: 20px;
	}

	.about-us{
		padding: 80px 0 40px;
	}

	.about-us-images{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.about-image figure,
	.about-image figure img{
		border-radius: 20px;
	}

	.about-skill-box{
		padding: 20px;
	}

	.about-skill-box .skills-progress-bar{
		margin-bottom: 15px;
	}

	.expert-team-box{
		padding: 15px;
		bottom: 20px;
	}

	.satisfy-clients-content{
		margin-top: 10px;
	}

	.about-us-body{
		padding: 20px;
	}

	.about-us-body .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.about-us-body .icon-box img{
		max-width: 26px;
	}

	.about-body-content{
		width: calc(100% - 65px);
	}

	.about-us-btn{
		margin-top: 30px;
	}

	.our-services{
		padding: 40px 0;
	}

	.services-nav{
		margin-bottom: 40px;
	}

	.services-nav .nav-tabs{
		gap: 20px;
	}

	.services-nav ul li .nav-link{
		padding: 12px 15px;
	}

	.services-item-box{
		padding: 40px;
		border-radius: 20px;
	}

	.services-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.services-item-btn{
		margin-top: 30px;
	}

	.services-item-content ul{
		margin-top: 30px;
	}

	.services-item-content ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.services-item-content ul li::before{
		font-size: 16px;
	}

	.services-chart-box{
		margin: 30px 0 0 0;
		padding: 20px;
	}

	.services-chart-content h2{
		font-size: 26px;
	}

	.section-footer-text{
		margin-top: 30px;
	}

	.our-features{
		padding: 40px 0;
	}

	.features-item,
	.features-item.feature-box-1{
		padding: 30px;
	}

	.features-item.feature-box-1 .features-content,
	.features-item.feature-box-1 .features-item-image{
		width: auto;
	}

	.features-content .section-title h2{
		font-size: 26px;
	}

	.features-btn{
		margin-top: 30px;
	}

	.our-projects{
		padding: 40px 0 10px;
	}

	.project-image figure,
	.project-image img{
		border-radius: 20px;
	}

	.project-image img{
		aspect-ratio: 1 / 1.1;
	}

	.project-btn a{
		width: 50px;
		height: 50px;
	}

	.project-btn a img{
		max-width: 26px;
	}

	.project-content{
		right: 20px;
		bottom: 20px;
		left: 20px;
		padding: 15px;
	}

	.project-content h3{
		font-size: 18px;
	}

	.what-we-do{
		padding: 40px 0;
	}

	.what-we-do-image figure,
	.what-we-do-image img,
	.what-we-do-image-box{
		border-radius: 20px;
	}

	.what-we-do-item{
		padding: 20px;
		border-radius: 20px;
	}

	.what-we-do-counter h2{
		font-size: 32px;
	}

	.what-we-do-body-image{
		right: -20px;
	}

	.what-we-do-body-image img{
		max-width: 140px;
	}

	.what-we-do-image-box .what-we-do-image img{
		aspect-ratio: 1 / 1.6;
	}

	.what-we-do-info{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.what-we-do-item-content .btn-default{
		margin-top: 30px;
		padding: 13px 40px 13px 15px;
	}

	.what-we-do-box-2{
		margin-top: 30px;
		flex-direction: initial;
		height: calc(100% - 30px);
	}

	.what-we-do-box-2 .what-we-do-item,
	.what-we-do-box-2 .what-we-do-image{
		width: calc(50% - 15px);
	}

	.why-choose-us{
		padding: 60px 0;
	}
	
	.why-choose-us.bg-section{
		margin: 40px 0;
	}

	.why-choose-us::before,
	.why-choose-us::after{
		width: 110px;
		height: 110px;
		opacity: 30%;
	}

	.why-choose-us::before{
		right: -10px;
	}

	.why-choose-us::after{
		bottom: -30px;
		left: -40px;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-list ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.why-choose-list ul li::before{
		font-size: 16px;
	}

	.why-choose-btn{
		margin-top: 30px;
	}

	.why-choose-image-box{
		max-width: 75%;
		margin: 0 auto;
	}

	.why-choose-cta-box{
		max-width: 185px;
		border-radius: 12px;
		padding: 15px;
	}

	.our-pricing{
		padding: 40px 0;
	}

	.pricing-item{
		border-radius: 20px;
		padding: 30px 25px;
	}

	.pricing-btn,
	.pricing-price,
	.pricing-header{
		margin-bottom: 30px;
	}

	.pricing-header .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.pricing-header .icon-box img{
		max-width: 26px;
	}

	.pricing-title{
		width: calc(100% - 65px);
	}

	.pricing-price h2{
		font-size: 36px;
	}

	.pricing-body{
		padding: 20px;
	}

	.pricing-body ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-body ul li::before{
		font-size: 16px;
	}

	.pricing-benefit-list{
        margin-top: 5px;
    }

	.pricing-benefit-list ul{
        gap: 15px 30px;
    }

	.our-testimonials{
		padding: 40px 0;
	}

	.testimonials-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-item{
		border-radius: 20px;
	}

	.testimonial-header,
	.testimonial-body{
		padding: 20px;
	}

	.testimonials-rating{
		margin-bottom: 20px;
	}

	.testimonials-rating i{
		font-size: 16px;
		margin-right: 0;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-body .author-image{
		margin-right: 15px;
	}

	.testimonial-body .author-content{
		width: calc(100% - 65px);
	}

	.testimonial-slider .testimonial-pagination{
		margin-top: 40px;
	}

	.testimonial-img figure,
	.testimonial-img img{
		border-radius: 20px;
	}

	.testimonial-img img{
		aspect-ratio: 1 / 0.85;
	}

	.review-rating-box{
		bottom: 20px;
		left: 20px;
		padding: 15px;
	}

	.cta-section{
		padding: 40px 0;
	}

	.cta-box::before,
	.cta-box::after{
		width: 90px;
		height: 90px;
		opacity: 30%;
	}

	.cta-box::before{
		top: 25px;
		left: 10px;
	}

	.cta-box::after{
		bottom: 10px;
		right: 25px;
	}

	.cta-box{
		padding: 60px 20px;
	}
	
	.our-blog{
		padding: 40px 0 50px;
	}

	.post-item{
		border-radius: 20px;
	}

	.post-featured-image{
		margin-bottom: 15px;
	}

	.post-item-body{
		padding: 0;
	}

	.post-item-content{
		margin-bottom: 15px;
	}

	.footer-box{
		padding: 50px 0;
	}

	.footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-header .section-title h2{
		font-size: 65px;
	}

	.footer-contact-item h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.footer-contact-item h2{
		font-size: 28px;
	}

	.about-footer{
		margin-bottom: 40px;
	}

	.footer-logo,
	.about-footer-content{
		margin-bottom: 20px;
	}

	.footer-links-box{
		margin: 0;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-newsletter-form{
		margin-bottom: 20px;
	}

	.footer-newsletter-form .form-group .form-control{
		padding: 12px 20px;
	}

	.footer-newsletter-form .form-group .btn-default{
		font-size: 14px;
		padding: 12px;
	}

	.footer-copyright{
		padding: 30px 0;
	}

	.page-header{
		padding: 80px 0;
	}

	.page-header-box h1{
		font-size: 52px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 16px;
	}

	.our-approach{
		padding: 40px 0;
	}

	.approach-item{
		border-radius: 20px;
	}

	.approach-item-content{
		padding: 20px 20px 0 20px;
		margin-bottom: 30px;
	}

	.approach-item-boxes .approach-item-content{
		margin-bottom: 30px;
	}

	.approach-item-content h3{
		margin-bottom: 10px;
	}

	.how-it-work{
		padding: 40px 0;
	}

	.how-work-content{
		position: static;
		margin: 0 0 30px 0;
	}

	.work-step-item{
		padding: 20px;
		border-radius: 20px;
	}

	.work-step-item .icon-box{
		height: 50px;
		width: 50px;
		margin-bottom: 30px;
	}

	.work-step-item .icon-box img{
		max-width: 26px;
	}

	.our-team{
		padding: 40px 0 10px;
	}

	.team-image a,
	.team-image figure,
	.team-image img{
		border-radius: 20px;
	}

	.team-social-icon{
		margin-top: 15px;
		padding-top: 15px;
	}

	.our-faqs{
		padding: 40px 0 80px;
	}

	.faqs-image-box{
		margin: 0 0 30px;
	}

	.faq-image figure,
	.faq-image img{
		border-radius: 20px;
	}

	.faq-accordion .accordion-item{
		border-radius: 14px;
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button,
	.faq-accordion .accordion-item .accordion-body{
        padding: 15px 45px 15px 15px;
    }

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 20px;
	}

	.page-services{
		padding: 80px 0 10px;
	}

	.page-services .services-item{
		padding: 30px;
		border-radius: 20px;
	}

	.our-testimonials.service-our-testimonials{
		padding: 40px 0 80px;
	}

	.page-service-single{
		padding: 80px 0;
	}

	.page-single-sidebar{
		margin: 0 0 30px;
	}

	.page-category-list{
		border-radius: 20px;
		margin-bottom: 30px;
		padding: 30px;
	}

	.page-category-list h3{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-category-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.page-category-list ul li a::before{
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-box{
		border-radius: 20px;
	}

	.sidebar-cta-body{
		padding: 20px;
	}

	.sidebar-cta-image img{
		aspect-ratio: 1 / 0.48;
	}

	.sidebar-cta-image{
		margin-bottom: 20px;
	}

	.sidebar-cta-logo{
		margin-bottom: 15px;
	}
	
	.sidebar-cta-contact a img{
		max-width: 26px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.page-single-image figure,
	.page-single-image img{
		border-radius: 20px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
	    margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before{
		font-size: 16px;
	}

	.service-solutions-box,
	.service-result-box,
	.service-growth-box{
		margin-top: 40px;
	}
	
	.solutions-content-list{
		margin: 30px 0;
	}

	.solutions-content-item{
		margin-bottom: 20px;
	}

	.solutions-content-item h3{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.solutions-content-item h3::before{
		font-size: 16px;
	}

	.solution-info-box{
		gap: 20px;
	}

	.solution-counter-box,
	.service-solution-img{
		width: calc(50% - 10px);
	}

	.solution-counter-box{
		padding: 30px 25px;
		border-radius: 20px;
	}

	.solution-counter-header .icon-box{
		width: 50px;
		height: 50px;
	}

	.solution-counter-header .icon-box img{
		max-width: 24px;
	}

	.service-solution-img figure,
	.service-solution-img img{
		border-radius: 20px;
	}

	.service-result-item-list{
		border-radius: 20px;
		margin-top: 30px;
		padding: 30px;
	}

	.service-result-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 30px;
	}

	.service-result-item .icon-box img{
		max-width: 24px;
	}

	.service-result-item-content h3{
		margin-bottom: 10px;
	}

	.service-growth-info-image{
		margin-top: 30px;
	}

	.service-growth-item{
		padding: 30px;
		border-radius: 20px;
	}

	.service-growth-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-growth-image figure,
	.service-growth-image img{
		border-radius: 20px;
	}

	.page-blog{
		padding: 80px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 80px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.42em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
		font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
		border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 10px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
        padding: 80px 0 50px;
    }

	.page-project-single{
		padding: 80px 0;
	}	

	.project-entry{
		margin-bottom: 40px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before{
		font-size: 16px;
	}

	.project-execution-box,
	.project-progress-box,
	.project-approach-box{
		margin-top: 40px;
	}

	.project-execution-image{
		margin-top: 20px;
	}

	.project-execution-image figure,
	.project-execution-image img{
		border-radius: 20px;
	}

	.execution-item{
		border-radius: 20px;
		margin-bottom: 20px;
		padding: 20px;
	}
	
	.execution-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.execution-item .icon-box img{
		max-width: 24px;
	}

	.execution-item-content{
		width: calc(100% - 65px);
	}

	.progress-info-box{
		border-radius: 20px;
        gap: 20px;
        padding: 20px;
    }

	.progress-content{
		width: calc(53% - 10px);
	}

	.progress-content ul{
		margin: 20px 0 0;
	}

	.progress-image{
		width: calc(47% - 10px);
	}

	.progress-image figure,
	.progress-image img{
		border-radius: 20px;
	}

	.project-approach-item-list{
		margin-top: 30px;
	}

	.project-approach-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.page-team{
        padding: 80px 0 50px;
    }

	.page-team-single{
        padding: 80px 0 40px;
    }

    .team-single-image{
        margin-right: 0;
        margin-bottom: 30px;
    }

    .team-single-image figure,
    .team-single-image img{
        border-radius: 20px;
    }

    .team-single-image img{
        aspect-ratio: 1 / 0.66;
        object-position: top center;
    }

    .team-contact-info-box{
        border-radius: 20px;
    }

    .team-contact-list{
        padding: 20px;
    }

    .member-social-list{
        padding: 15px 20px;
    }

    .team-experience{
        padding: 40px 0;
    }

    .team-experience-list ul li{
        margin-bottom: 10px;
        padding-left: 25px;
    }

    .team-experience-list ul li::before{
        font-size: 16px;
    }

    .team-skills-form{
        padding: 40px 0 80px;
    }

    .contact-us-form{
        padding: 30px;
        border-radius: 20px;
    }

    .contact-form .form-control{
        padding: 12px 15px;
    }

    .team-contact-form{
        margin-bottom: 30px;
    }

	.team-skills-content{
		margin-left: 0;
	}

	.team-skills-disc{
		margin-top: 30px;
	}

	.page-pricing{
        padding: 80px 0 40px;
    }

	.page-testimonials{
        padding: 80px 0 10px;
    }

	.page-gallery{
        padding: 80px 0 50px;
    }

    .page-gallery-box .photo-gallery figure,
    .page-gallery-box .photo-gallery img{
        border-radius: 20px;
    }

	.page-video-gallery{
        padding: 80px 0 50px;
    }

    .video-gallery-image a::before,
    .video-gallery-image img{
        border-radius: 20px;
    }

	.page-faqs{
		padding: 80px 0;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 40px;
	}
	
	.page-contact-us{
		padding: 80px 0;
	}

	.contact-us-content{
		margin: 0 0 30px;
	}

	.contact-info-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.contact-cta-box{
		border-radius: 20px;
		margin-top: 30px;
	}

	.contact-cta-content p{
		margin-bottom: 15px;
	}

	.contact-cta-content h3{
		font-size: 24px;
	}

	.contact-form .btn-default{
		padding: 14px 15px;
	}

	.google-map-iframe{
		margin-top: 80px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		border-radius: 20px;
		height: 420px;
	}

	.error-page{
		padding: 80px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-company-slider{
		margin-top: 30px;
	}

	.hero-company-slider p{
		font-size: 14px;
	}

	.hero-company-slider .company-logo img{
		max-height: 35px;
	}

	.about-us-images{
		padding: 0 20px 0 40px;
	}

	.about-skill-box{
		width: 210px;
		padding: 15px;
		animation: none;
	}

	.about-skill-title{
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.about-skill-title h3{
		font-size: 14px;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no{
		font-size: 14px;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 10px;
	}

	.expert-team-box{
		animation: none;
	}

	.satisfy-client-image img{
		max-width: 35px;
	}

	.satisfy-client-image.add-more{
		width: 35px;
		height: 35px;
	}

	.satisfy-client-image.add-more i{
		font-size: 16px;
	}

	.satisfy-clients-content p{
		font-size: 14px;
	}

	.about-us-body{
        padding: 20px 15px;
    }

	.about-body-content h3{
		font-size: 18px;
	}
	
	.services-nav{
		margin-bottom: 30px;
    }

	.services-nav .nav-tabs{
        gap: 15px 10px;
    }
	
	.services-nav ul li .nav-link{
		font-size: 14px;
        padding: 10px 8px;
    }
	
	.services-nav ul li .nav-link img{
		max-width: 16px;
		margin-right: 5px;
	}

	.services-item-box{
		padding: 20px;
	}

	.services-item{
		margin-bottom: 30px;
	}

	.services-item .icon-box{
		margin-bottom: 20px;
	}

	.services-item-content h3{
		font-size: 18px;
	}

	.services-item-btn,
	.services-item-content ul{
        margin-top: 20px;
    }

	.services-chart-box{
		margin-top: 0;
	}

	.services-chart-content h2{
        font-size: 22px;
    }

	.features-item{
		width: 100%;
	}

	.features-item,
	.features-item.feature-box-1{
		padding: 20px;
	}

	.features-content .section-title h2{
        font-size: 22px;
    }

	.features-btn{
        margin-top: 20px;
    }	

	.project-content p{
		margin-bottom: 5px;
	}

	.what-we-do-box-1,
	.what-we-do-box-2{
		height: auto;
	}

	.what-we-do-box-1{
		margin-bottom: 30px;
	}

	.what-we-do-box-2 .what-we-do-item,
	.what-we-do-box-2 .what-we-do-image{
		width: auto;
	}

	.what-we-do-counter h2{
        font-size: 26px;
    }

	.what-we-do-item-content h3{
		font-size: 18px;
	}

	.what-we-do-item-content p{
		margin-top: 10px;
	}

	.what-we-do-image-box .what-we-do-image img{
        aspect-ratio: 1 / 1.01;
    }

	.what-we-do-box-2{
		flex-direction: column;
	}

	.what-we-do-item-content .btn-default{
		margin-top: 20px;
	}

	.why-choose-image-box{
        max-width: 100%;
		padding-right: 40px;
    }

	.why-choose-cta-box{
        max-width: 120px;
        padding: 15px;
    }

	.why-choose-cta-box img{
		max-width: 30px;
	}

	.pricing-item{
        padding: 20px;
    }

	.pricing-header,
	.pricing-price{
		margin-bottom: 20px;
	}

	.pricing-title h3{
		font-size: 18px;
	}

	.pricing-btn .btn-default{
		padding: 14px 15px;
	}

	.pricing-benefit-list ul{
		gap: 10px 25px;
	}

	.pricing-benefit-list ul li{
		font-size: 12px;
	}

	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.testimonial-content p{
        font-size: 16px;
    }

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-img img{
        aspect-ratio: 1 / 1.05;
    }

	.cta-box{
		border-radius: 20px;
    }

	.cta-box-body{
		border-radius: 26px;
	}

	.cta-box-body .form-group .form-control{
		width: 65%;
		padding: 8px 12px;
		font-size: 14px;
	}

	.cta-box-body .form-group .btn-default{
		width: 35%;
		padding: 14px;
		font-size: 14px;
	}

	.post-item-content h2{
		font-size: 18px;
	}
	
	.footer-header{
		gap: 20px;
		justify-content: center;
		text-align: center;
	}

	.footer-header .section-title h2{
        font-size: 40px;
    }

	.footer-contact-item h3{
        font-size: 16px;
    }

	.footer-contact-item h2{
        font-size: 20px;
    }

	.about-footer{
		margin-bottom: 30px;
	}

	.footer-logo,
	.about-footer-content{
        margin-bottom: 15px;
    }

	.footer-links{
		max-width: 100%;
		width: 100%;
	}

	.footer-links h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-links ul li{
        margin-bottom: 8px;
    }

	.footer-newsletter-box p{
		font-size: 14px;
	}

	.footer-copyright{
        padding: 15px 0;
    }

	.page-header-box h1{
		font-size: 30px;
	}

	.approach-content{
		margin-bottom: 30px;
	}

	.approach-item-content h3{
		font-size: 18px;
	}

	.work-step-list{
		gap: 20px;
	}

	.work-step-item{
		width: 100%;
	}

	.work-step-item .icon-box{
		margin-bottom: 20px;
	}

	.work-step-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.team-image img{
		aspect-ratio: 1 / 0.99;
	}

	.team-content h3{
		font-size: 18px;
	}

	.team-content p{
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px;
	}

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.page-services .services-item{
		padding: 20px;
	}

	.page-category-list{
		padding: 20px;
	}

	.page-category-list h3{
		font-size: 18px;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

	.service-entry h2{
		font-size: 26px;
	}

	.solutions-content-item h3{
        margin-bottom: 5px;
    }

	.solution-counter-box,
	.service-solution-img{
        width: 100%;
    }

	.solution-counter-box{
		padding: 20px;
	}

	.solution-counter-body{
		margin-top: 30px;
	}

	.service-result-item-list{
		padding: 20px;
	}

	.service-result-item{
		width: 100%;
	}

	.service-result-item .icon-box{
		margin-bottom: 20px;
	}

	.service-result-item-content h3{
		font-size: 18px;
	}

	.service-growth-info-image{
		gap: 20px;
	}

	.service-growth-item,
	.service-growth-image{
		width: 100%;
	}

	.service-growth-item{
		padding: 20px;
	}

	.service-growth-header{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.service-growth-header .icon-box a{
		width: 40px;
		height: 40px;
	}

	.service-growth-header .icon-box a img{
		max-width: 22px;
	}

	.service-growth-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.tag-links{
        font-size: 18px;
    }

	.project-entry h2{
		font-size: 26px;
	}

	.project-entry ul li{
		font-size: 14px;
	}

	.project-execution-content,
	.execution-item-list{
		width: 100%;
	}

	.execution-item{
		padding: 15px;
	}
	
	.execution-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.progress-content,
	.progress-image{
		width: 100%;
	}

	.progress-image img{
		aspect-ratio: 1 / 0.65;
	}

	.project-approach-item-list{
		gap: 20px;
	}

	.project-approach-item-list .execution-item{
		width: 100%;
	}

	.project-approach-list{
        margin-top: 20px;
        padding-top: 20px;
    }

	.team-single-image img{
        aspect-ratio: 1 / 1.1;
        object-position: center center;
    }

    .team-contact-box{
        width: 100%;
    }

    .team-contact-content h3{
        font-size: 18px;
    }

	.team-contact-list{
		gap: 20px;
	}

	.member-social-list{
		gap: 10px;
	}

    .member-social-list h3{
        font-size: 18px;
    }

	.member-social-list ul li{
		margin-right: 6px;
	}

    .contact-us-form{
        padding: 20px;
    }

	.team-skills-list{
		gap: 20px;
	}

    .team-skills-list .skills-progress-bar{
        width: 100%;
    }

    .team-skills-list .skills-progress-bar .skill-data{
        margin-bottom: 15px;
    }

	.team-skills-disc{
		margin-top: 20px;
	}

	.contact-info-list{
        margin-top: 20px;
        padding-top: 20px;
		gap: 20px;
    }

	.contact-info-item{
		width: 100%;
	}

	.contact-item-content h3{
		font-size: 18px;
	}

	.contact-cta-box{
		gap: 10px;
		padding: 15px;
	}

	.contact-img figure{
		border-radius: 14px;
	}

	.contact-img img{
		max-width: 120px;
		border-radius: 14px;
	}

	.contact-image .icon-box{
		width: 50px;
		height: 50px;
	}

	.contact-image .icon-box img{
		max-width: 26px;
	}

	.contact-cta-content p{
        margin-bottom: 5px;
    }

	.contact-cta-content h3{
        font-size: 18px;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}
}


/* ================================
   GOOGLE ADS PAGE CUSTOM THEME
   ================================ */

:root {
  --primary-color: #FFFFFF;
  --secondary-color: #FFFFFF0F;
  --bg-color: #181422;
  --text-color: #FFFFFF;
  --accent-color: #045377;
  --accent-secondary-color: #059EBD;
  --white-color: #FFFFFF;
  --divider-color: #FFFFFF0F;
  --dark-divider-color: #FFFFFF1A;
  --error-color: rgb(230, 87, 87);
  --default-font: Georgia, "Times New Roman", serif;
  --gradient-primary-start: #045377;
  --gradient-primary-end: #059EBD;
  --gradient-primary: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--default-font);
  /* --default-font : "Sora", sans-serif; */
  --default-font : Georgia, "Times New Roman", serif;
}

/* --- HERO SECTION --- */
.gy-hero-gradient {
  background: radial-gradient(110% 120% at 0% 0%, rgba(4,83,119,0.85) 0%, #0f1a27 55%, #181422 100%);
  color: var(--white-color);
}
.gy-hero-gradient .lead {
  opacity: 0.9;
}

/* --- BADGES --- */
.badge-soft-primary {
  background: rgba(4,83,119, 0.25);
  color: var(--accent-secondary-color);
}

/* --- PRICING CARDS --- */
.pricing-card {
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  background: var(--secondary-color);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, bg 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: var(--gradient-primary);
  color: var(--white-color);
}
.pricing-card.popular {
  border: 2px solid var(--accent-secondary-color);
  box-shadow: 0 12px 30px rgba(5,158,189,0.25);
}

/* --- CHECKLIST --- */
.li-check {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.li-check:before {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  top: 0.1rem;
  font-weight: 800;
  color: var(--accent-secondary-color);
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  left: calc(1rem + 8px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dark-divider-color);
}
.timeline-step {
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: 1.75rem;
  color: var(--text-color);
}
.timeline-bullet {
  position: absolute;
  left: 1rem;
  top: 0.15rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-secondary-color);
  box-shadow: 0 0 0 4px rgba(5,158,189,0.25);
}

/* --- KPI BOXES --- */
.kpi {
  border-radius: 12px;
  background: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  color: var(--white-color);
}

/* Use your site's primary theme color */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: var(--gradient-primary-hover, var(--gradient-primary));
    opacity: 0.9;
}

/* Outline button (Talk to Sales) */
.btn-outline-primary {
    border-color: var(--gradient-primary-start);
    color: var(--gradient-primary-start);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary-start);
    color: #fff;
}


/* --- FEATURE TABLE --- */
.feature-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-color);
}
.feature-table th,
.feature-table td {
  vertical-align: middle;
  border-bottom: 1px solid var(--dark-divider-color);
  padding: 12px;
}
.feature-table thead th {
  background: var(--gradient-primary);
  color: var(--white-color);
}
.feature-table tbody tr:hover {
  background: rgba(4,83,119,0.25);
}

/* --- LINKS & TEXT --- */
a {
  color: var(--accent-secondary-color);
  text-decoration: none;
}
a:hover {
  color: var(--accent-color);
}

h1, h2, h3, h4, h5 {
  color: var(--white-color);
}
p {
  color: var(--text-color);
}


/* --- CTA Section (matches homepage theme) --- */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white-color);
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 0;
}

/* --- CTA Section (matches homepage theme) --- */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white-color);
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 0;
}

/* --- Contact Form --- */
.contact-form-section {
  background: var(--secondary-color);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: var(--text-color);
  padding: 2rem;
}

/* INPUT + SELECT */
.contact-form-section .form-control,
.contact-form-section .form-select {
  background-color: #1f1b2e; /* theme dark bg */
  border: 1px solid var(--dark-divider-color);
  color: var(--white-color);
  border-radius: 8px;
}

/* FOCUS STATE */
.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  background-color: #1f1b2e;
  color: var(--white-color);
  border-color: var(--accent-secondary-color); /* theme blue */
  box-shadow: 0 0 0 0.25rem rgba(5,158,189,0.25);
}

/* --- Select Dropdown Options (THE FIX) --- */
.contact-form-section .form-select option {
  background-color: #1f1b2e !important; /* dark theme */
  color: var(--white-color) !important;
}

/* Fix for Windows default blue highlight */
.contact-form-section .form-select option:checked,
.contact-form-section .form-select option:hover {
  background-color: var(--accent-secondary-color) !important; /* theme blue */
  color: #fff !important;
}

/* Primary Button */
.contact-form-section .btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-form-section .btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #059EBD, #045377);
}


/* === OPTIONAL ADD-ONS === */
.addons-section {
  background: #0f1a27;
  padding: 80px 20px;
  text-align: center;
  color: var(--white-color);
}

.addons-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  --webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.addon-card {
  background: var(--secondary-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  color: var(--text-color);
  text-align: left;
}

.addon-card:hover {
  background: var(--gradient-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5, 158, 189, 0.35);
  color: var(--white-color);
}

.addon-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.addon-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.addon-card p span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-secondary-color);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
}


/* === CASE STUDY SECTION === */
.case-study-section {
  background-color: var(--bg-color);
  padding: 100px 20px;
  color: var(--text-color);
  text-align: center;
}

.case-header h2 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  --webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.case-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* GLOBAL GRID SYSTEM */

.addons-grid,
.case-metrics,
.journey-metrics {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.8rem;
}

/* Tablet */
@media (max-width: 1144px) {
  .addons-grid,
  .case-metrics,
  .journey-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .addons-grid,
  .case-metrics,
  .journey-metrics {
    grid-template-columns: 1fr !important;
  }
}


.metric-box {
  background: linear-gradient(145deg, rgba(4,83,119,0.4), rgba(5,158,189,0.25));
  border: 1px solid var(--dark-divider-color);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  color: var(--white-color);
  width: 100%;
  /* max-width: 280px; */
}

.metric-box:hover {
  background: var(--gradient-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5,158,189,0.4);
}

.metric-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.5rem;
}

.metric-box p {
  font-size: 1rem;
  opacity: 0.85;
}


 .comparison-section table tr:hover {
    background: rgba(255, 255, 255, 0.06);
    transition: bg 0.3s ease;
  }
  .comparison-section td, .comparison-section th {
    font-family: var(--default-font);
    vertical-align: middle;
  }
  .comparison-section th {
    font-weight: 600;
  }
  .comparison-section td {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
  }
  @media (max-width: 768px) {
    .comparison-section {
      padding: 60px 0;
    }
    .comparison-section table th,
    .comparison-section table td {
      padding: 14px;
      font-size: 0.9rem;
    }
  }


/************************************/
/*** 	   Businessform css		  ***/
/************************************/
  /* Placeholder color - white */
.contact-form-section .form-control::placeholder {
    color: #ffffff;
    opacity: 1; /* important for Firefox */
}

/* Browser-specific fallbacks */
.contact-form-section .form-control::-webkit-input-placeholder {
    color: #ffffff;
}

.contact-form-section .form-control:-ms-input-placeholder {
    color: #ffffff;
}

.contact-form-section .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.input-error {
  border: 2px solid #ff4d4f; /* red border for empty required fields */
}


/* BLOG SINGLE HERO – HEIGHT REDUCTION (CSS ONLY) */
.page-header {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

/* Reduce inner hero box spacing */
.page-header .page-header-box {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/* Tighten title spacing */
.page-header h1 {
    margin-bottom: 10px !important;
    line-height: 1.2;
}

/* Reduce meta spacing */
.page-header .blog-meta {
    margin-top: 4px !important;
}


/* Services pages  */

/* ==========================================
   COMMON SEO / SMM / ADS / DEV STEP SECTION
   ========================================== */

.seo-approach-section {
  background: transparent;
  color: var(--white-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* ===== GRID ===== */
.seo-steps-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* ===== CARD ===== */
.seo-step {
  background: #FFFFFF0F;
  border-radius: 20px;
  padding: 40px 35px;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 25px rgba(5,158,189,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.seo-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(5,158,189,0.35);
}

/* ===== ICON FIX (PERMANENT OVAL FIX) ===== */
.seo-icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--accent-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: var(--accent-secondary-color);
  margin-right: 25px;
  transition: all 0.4s ease;
}

.seo-step:hover .seo-icon {
  background: var(--accent-secondary-color);
  color: var(--white-color);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(5,158,189,0.5);
}

/* ===== TEXT ===== */
.seo-step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.seo-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #f2f2f2;
  margin: 0;
}

/* ==========================================
   AUTO CENTER LAST CARD (ANY ODD NUMBER)
   ========================================== */

.seo-steps-list .seo-step:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (max-width: 991px) {
  .seo-steps-list {
    grid-template-columns: 1fr;
  }

  .seo-step {
    flex-direction: column;
    text-align: center;
  }

  .seo-icon {
    margin: 0 auto 20px;
  }
}


/************************************/
/***     SEO Benefits Section     ***/
/************************************/

.seo-benefits-section {
    padding: 80px 0;
    /* background: var(--secondary-color); */
}

.seo-card {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    color: #fff;
    transition: all 0.4s ease-in-out;

    /* FIXED HEIGHT AND WIDTH */
    width: 100%;
    min-height: 350px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    
}

.seo-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.seo-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-card ul li {
    position: relative;
    line-height: 1.8em;
    padding-left: 35px;
    margin-bottom: 15px;
}

.seo-card ul li:last-child {
    margin-bottom: 0;
}

/* ICON STYLE */
.seo-card ul li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #fff;
    width: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.seo-card:hover ul li i {
    color: var(--accent-secondary-color);
}

/* Desktop 992px and above - 3 per row */
@media (min-width: 992px) {
    .seo-benefits-section .col-lg-4 {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .seo-card {
        width: 100%;
    }
}

/* Tablet 768px - 991px - 2 per row, last card centered */
@media (min-width: 768px) and (max-width: 991px) {
    .seo-benefits-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .seo-benefits-section .col-md-6,
    .seo-benefits-section .col-md-12 {
        flex: 0 0 45%;
        max-width: 45%;
        display: flex;
        justify-content: center;
    }

    .seo-card {
        min-height: 350px;
    }
}

/* Mobile <768px - 1 per row */
@media (max-width: 767px) {
    .seo-benefits-section .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .seo-benefits-section .col-12 {
        width: 90%;
        max-width: 400px;
        display: flex;
        justify-content: center;
    }

    .seo-card {
        min-height: 350px;
    }
}

/************************************/
/*** 	 01. Terms and conditions	  ***/
/************************************/

/************************************/
/*** TERMS PAGE CENTERED LAYOUT   ***/
/************************************/

/* GAP AFTER HERO */
.page-header {
    margin-bottom: 50px;
}

/* SECTION SPACING */
.policy-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* MAIN CONTENT */
.policy-content {
    width: 100%;
}

/* HEADING */
.policy-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* INTRO */
.policy-content .intro {
    text-align: center;
    margin-bottom: 30px;
}

/* TERMS LIST */
.terms-list {
    margin-top: 30px;
}

/* ITEM */
.term-item {
    margin-bottom: 25px;
}

/* TITLE */
.term-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #059EBD;
    font-size: 20px;
}

/* NUMBER BADGE */
.term-item h4 span {
    background: linear-gradient(90deg, #045377, #059EBD);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 32px;
    text-align: center;
}

/* TEXT */
.policy-content p {
    text-align: justify;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}



/************************************/
/*** POLICY PAGE (NO BOX VERSION) ***/
/************************************/


/* GAP AFTER HERO */
.page-header {
    margin-bottom: 50px;
}

/* SECTION SPACING */
.policy-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* MAIN CONTENT */
.policy-content {
    width: 100%;
}

/* HEADING */
.policy-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* INTRO TEXT */
.policy-content .intro {
    text-align: center;
    margin-bottom: 30px;
}

/* TERMS LIST */
.terms-list {
    margin-top: 30px;
}

/* EACH ITEM */
.term-item {
    margin-bottom: 25px;
}

/* TITLE */
.term-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #059EBD;
    font-size: 20px;
}

/* NUMBER BADGE */
.term-item h4 span {
    background: linear-gradient(90deg, #045377, #059EBD);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 32px;
    text-align: center;
}

/* TEXT */
.policy-content p {
    text-align: justify;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}


/************************************/
/*** REFUND POLICY CENTER LAYOUT  ***/
/************************************/

/* GAP AFTER HERO */
.page-header {
    margin-bottom: 50px;
}

/* SECTION SPACING */
.policy-section {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* MAIN CONTENT */
.policy-content {
    width: 100%;
}

/* HEADING */
.policy-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* INTRO */
.policy-content .intro {
    text-align: center;
    margin-bottom: 30px;
}

/* TERMS LIST */
.terms-list {
    margin-top: 30px;
}

/* ITEM */
.term-item {
    margin-bottom: 25px;
}

/* TITLE */
.term-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #059EBD;
    font-size: 20px;
}

/* NUMBER BADGE */
.term-item h4 span {
    background: linear-gradient(90deg, #045377, #059EBD);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 32px;
    text-align: center;
}

/* TEXT */
.policy-content p {
    text-align: justify;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

/* LINKS */
.policy-content a {
    color: #059EBD;
    text-decoration: none;
}

.policy-content a:hover {
    color: #045377;
}

/* Prevent line break for phone/email */
.no-break {
    white-space: nowrap;
}


/* ===============================
   SERVICES SECTION (ISOLATED)
================================= */

.sw-services-section {
  background: #181422;
  color: #fff;
  padding: 100px 0;
}

/* Title */
.sw-services-title h3 {
  margin-bottom: 10px;
  font-size: 16px;
  opacity: 0.7;
}

.sw-services-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sw-services-title h2 span {
  color: #059EBD;
}

.sw-services-title p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #ccc;
}

/* Grid spacing */
.sw-services-grid {
  row-gap: 30px;
}

/* ===============================
   CARD
================================= */
.sw-service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* Hover */
.sw-service-card:hover {
  transform: translateY(-10px);
  border-color: #059EBD;
  box-shadow: 0 12px 30px rgba(5,158,189,0.3);
}

/* Gradient effect */
.sw-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(4,83,119,0.15), rgba(5,158,189,0.3), transparent);
  transition: 0.7s;
}

.sw-service-card:hover::before {
  left: 120%;
}

/* ===============================
   ICON
================================= */
.sw-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 15px;
  background: rgba(5,158,189,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #059EBD;
  transition: 0.3s;
}

.sw-service-card:hover .sw-icon {
  background: #059EBD;
  color: #fff;
  transform: scale(1.1);
}

/* ===============================
   TEXT
================================= */
.sw-service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.sw-service-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

/* List */
.sw-service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.sw-service-card ul li {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 5px;
}

/* ===============================
   BUTTON
================================= */
.sw-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background: #059EBD;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.sw-btn:hover {
  background: #045377;
  color: #fff;
}


/* ===============================
   SERVICES FEATURE SECTION
================================= */
.sw-services-feature-section {
  background: transparent;
  color: #fff;
  padding: 80px 0;
  --accent-color: #045377;
  --accent-secondary-color: #059EBD;
}

/* Title */
.sw-section-title h2 span {
  color: var(--accent-secondary-color);
}

/* ===============================
   CARD
================================= */
.sw-feature-card {
  position: relative;
  background: #FFFFFF0F;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 4px 20px #FFFFFF1A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  z-index: 1;
}

/* Hover */
.sw-feature-card:hover {
  background: linear-gradient(135deg, #045377, #059EBD);
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(5,158,189,0.35);
  border-color: var(--accent-secondary-color);
}

/* ===============================
   ICON
================================= */
.sw-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(5, 158, 189, 0.1);
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-secondary-color);
  transition: all 0.4s ease;
}

.sw-feature-card:hover .sw-icon-box {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(5, 158, 189, 0.5);
}

/* ===============================
   TEXT
================================= */
.sw-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sw-card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #f2f2f2;
  margin: 0;
}

.sw-feature-card:hover .sw-card-content p {
  color: #e0f7ff;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 991px) {
  .sw-feature-card {
    margin-bottom: 20px;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .sw-services-feature-section .row {
    row-gap: 25px;
  }
}





/* ===============================
   SERVICES FEATURE SECTION
================================= */
.services-premium-v2 {
  padding: 100px 0;
}

/* GRID */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* CARD */
.service-card-v2 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

/* INNER CARD */
.card-inner {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 40px 35px;
  border-radius: 22px;

  display: flex;
  gap: 20px;
  align-items: flex-start;

  transition: all 0.4s ease;
}

/* GLOW */
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(5,158,189,0.25), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

/* HOVER */
.service-card-v2:hover .card-inner {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(5,158,189,0.25);
}

.service-card-v2:hover .card-glow {
  opacity: 1;
}

/* ICON */
.icon-wrap {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  color: #fff;
}

/* TEXT */
.content h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
}
/*  FIXED BUTTON (FORCE WIDTH) */
/* .content .btn-default {
  display: inline-flex;             
  align-items: center;
  justify-content: center;

  min-width: 180px;                
  padding: 10px 24px;              
  font-size: 0.9rem;

  white-space: nowrap;             
} */

/*  REMOVE STAGGER COMPLETELY */
.service-card-v2:nth-child(2),
.service-card-v2:nth-child(4) {
  transform: none;
}

/* RESPONSIVE */
/* ============================= */
/* RESPONSIVE FIX (SAFE SCOPE)   */
/* ============================= */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .services-premium-v2 {
    padding: 80px 0;
  }

  .services-grid-v2 {
    gap: 25px;
  }

  .card-inner {
    padding: 30px 25px;
  }

  .icon-wrap {
    width: 65px;
    height: 65px;
    min-width: 65px;
    font-size: 1.8rem;
  }
}
/* BUTTON GAP FIX (ONLY THIS SECTION) */
.services-premium-v2 .content .btn-default {
  margin-top: 22px;   /* space from text */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile layout */
@media (max-width: 768px) {
  .services-grid-v2 {
    grid-template-columns: 1fr;
  }

  .card-inner {
    flex-direction: column;
    align-items: center;   /* CENTER EVERYTHING */
    text-align: center;
    padding: 25px 20px;
  }

  /* ICON CENTER FIX */
  .icon-wrap {
    margin: 0 auto;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;  /* ensures text + button center */
  }

  .content h3 {
    text-align: center;
  }

  .content p {
    text-align: center;
  }

  .services-premium-v2 .content .btn-default {
    margin-top: 18px;
  }
}

/* Small mobile tweaks */
@media (max-width: 480px) {
  .card-inner {
    padding: 22px 16px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p {
    font-size: 14.5px;
  }

  .icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

 /* ===============================
   WHY CHOOSE US PREMIUM V4
================================= */
.why-choose-premium-v4 {
  padding: 100px 0;
  background: transparent;
  color: #fff;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(5, 158, 189, 0.25);
  border-color: var(--accent-secondary-color);
}

/* ICON */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(5, 158, 189, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  color: var(--accent-secondary-color);

  transition: 0.3s;
}

/* ICON HOVER */
.why-card:hover .why-icon {
  background: var(--accent-secondary-color);
  color: #fff;
  transform: scale(1.1);
}

/* TEXT */
.why-card h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

.why-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
}

/* SUBTLE TOP BORDER EFFECT */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-secondary-color);
  transition: 0.4s;
}

.why-card:hover::before {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}



/* ===============================
   Packages FEATURE SECTION
================================= */

 /* ===============================
   PACKAGES CATEGORY SECTION (ADVANCED LAYOUT)
================================= */

.packages-premium-v3 {
  padding: 110px 0;
}

/* GRID */
.packages-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.package-card-v3 {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  padding: 45px 25px;
  text-align: center;

  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;

  transition: all 0.4s ease;
}

/* TOP LINE ANIMATION */
.package-card-v3 .top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;

  background: linear-gradient(90deg, #045377, #059EBD);
  transition: 0.5s ease;
}

/* ICON */
.package-card-v3 .icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;

  border-radius: 50%;
  background: var(--gradient-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  color: #fff;
}

/* TEXT */
.package-card-v3 h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 12px;
}


.package-card-v3 p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.75;
  color: #f1f1f1;   /* 👈 increased visibility */
}



/* HOVER EFFECT */
.package-card-v3:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(5,158,189,0.25);
  border-color: rgba(5,158,189,0.5);
}


/* BUTTON SPACING (ONLY THIS SECTION) */
.packages-premium-v3 .btn-default {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ACTIVATE TOP LINE */
.package-card-v3:hover .top-line {
  width: 100%;
}

/* FLOAT ANIMATION */
.package-card-v3 {
  animation: floatCard 6s ease-in-out infinite;
}

.package-card-v3:nth-child(2) {
  animation-delay: 1s;
}
.package-card-v3:nth-child(3) {
  animation-delay: 2s;
}
.package-card-v3:nth-child(4) {
  animation-delay: 3s;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .packages-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .packages-grid-v3 {
    grid-template-columns: 1fr;
  }
}


 /* ===============================
   PACKAGES CATEGORY SECTION (ADVANCED LAYOUT)
================================= */
/* ===============================
   FULLY SCOPED PRICING SECTION
   (NO GLOBAL IMPACT)
================================= */

.pricing-premium-section {
  padding: 100px 0;
}

/* LIST */
.pricing-premium-section .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.pricing-premium-section .pricing-card ul li {
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* TABS */
.pricing-premium-section .pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.pricing-premium-section .tab-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
}

.pricing-premium-section .tab-btn.active {
  background: var(--gradient-primary);
}

/* GRID */
.pricing-premium-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.pricing-premium-section .pricing-card {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
  min-height: 320px;
  transition: all 0.3s ease;
}

/* FEATURED */
.pricing-premium-section .pricing-card.featured {
  border: 1px solid var(--accent-secondary-color);
}

/* BADGE */
.pricing-premium-section .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(13,110,253,0.4);
}

/* PRICE */
.pricing-premium-section .price {
  font-size: 18px;
  margin: 10px 0;
  color: var(--accent-secondary-color);
}

/* HOVER */
.pricing-premium-section .pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--gradient-primary);
}

.pricing-premium-section .pricing-card:hover h3,
.pricing-premium-section .pricing-card:hover p,
.pricing-premium-section .pricing-card:hover li {
  color: #fff;
}

/* CTA BUTTON GAP FIX */
.pricing-premium-section .pricing-card .btn-default {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* TABS CONTENT */
.pricing-premium-section .tab-content {
  display: none;
}
.pricing-premium-section .tab-content.active {
  display: block;
}

/* CTA */
.pricing-premium-section .pricing-cta {
  margin-top: 40px;
  text-align: center;
}

/* ===============================
   RESPONSIVE (SCOPED ONLY)
================================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .pricing-premium-section .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-premium-section .pricing-card {
    min-height: auto;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .pricing-premium-section {
    padding: 80px 0;
  }

  .pricing-premium-section .pricing-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pricing-premium-section .tab-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-premium-section .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-premium-section .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .pricing-premium-section .tab-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .pricing-premium-section .pricing-card {
    padding: 22px;
  }

  .pricing-premium-section .price {
    font-size: 16px;
  }

  .pricing-premium-section .pricing-card .btn-default {
    margin-top: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pricing-premium-section {
    padding: 60px 0;
  }

  .pricing-premium-section .pricing-card {
    padding: 18px;
    border-radius: 14px;
  }

  .pricing-premium-section .pricing-card ul li {
    font-size: 12px;
  }

  .pricing-premium-section .popular-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .pricing-premium-section .tab-btn {
    font-size: 13px;
    padding: 7px 14px;
  }
}


/* ===============================
   WHO SHOULD CHOOSE (SCOPED)
================================= */

.who-should-clean {
  padding: 100px 0;
  color: #fff;
}

/* SUBTEXT */
.who-should-clean .who-subtext {
  max-width: 700px;
  margin: auto;
  font-size: 15.5px;
  line-height: 1.8;
  color: #f1f1f1;
  opacity: 0.9;
}

/* GRID */
.who-should-clean .who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* CARD */
.who-should-clean .who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 18px;
  transition: all 0.3s ease;
}

/* TITLE */
.who-should-clean .who-card h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 14px;
}

/* PARAGRAPH */
.who-should-clean .who-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* TAG */
.who-should-clean .who-tag {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.85;
}

/* HOVER */
.who-should-clean .who-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-secondary-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}
/* ===============================
   RESPONSIVE (SCOPED ONLY)
================================= */

@media (max-width: 992px) {
  .who-should-clean {
    padding: 80px 0;
  }

  .who-should-clean .who-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .who-should-clean .who-grid {
    grid-template-columns: 1fr;
  }

  .who-should-clean .who-card {
    padding: 25px 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .who-should-clean {
    padding: 60px 0;
  }

  .who-should-clean .who-card {
    padding: 22px 16px;
  }

  .who-should-clean .who-card h3 {
    font-size: 18px;
  }

  .who-should-clean .who-card p {
    font-size: 14.5px;
  }

  .who-should-clean .who-tag {
    font-size: 13px;
  }
}


/* ===============================
   Common CTA Section Styles (Scoped) SEO  SMM  GOOGLE ADS  website development  services  packages  
================================= */

.cta-get-started {
  background: transparent;
  color: var(--white-color);
  padding: 100px 0;
  overflow: hidden;
}


/* KPI Boxes */
.kpi-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(5, 158, 189, 0.1);
  height: 100%;
  cursor: pointer;
}

.kpi-box i {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--accent-secondary-color);
  transition: all 0.4s ease;
}

.kpi-box h3 {
  font-size: 18px;       /* same as Why Choose Us / SMM / Web Dev headings */
  font-weight: 600;
  color: #ffffff;        /* bright white for visibility */
  margin-bottom: 10px;
  line-height: 1.4;
}

.kpi-box p {
   font-size: 15px;       /* same as Why Choose Us paragraph */
  line-height: 1.6;
  color: #f2f2f2;        /* brighter for better readability */
  margin: 0;
}

/* Hover Animations */
.kpi-box:hover {
  background: linear-gradient(135deg, var(--accent-primary-color), var(--accent-secondary-color));
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(5, 158, 189, 0.4);
}

.kpi-box:hover i {
  color: #fff;
  transform: scale(1.2);
}

.kpi-box:hover h5,
.kpi-box:hover p {
  color: #fff;
}

/* Image */
.cta-image img {
  width: 100%;
  border-radius: 25px;
  transition: transform 0.5s ease;
}

.cta-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .cta-get-started {
    padding: 70px 0;
  }
  .cta-content {
    text-align: center;
    margin-bottom: 40px;
  }
}

/* ===============================
   Common CSS FOR SEO SMM  GOOGLE ADS  website development  services  
================================= */

.high-visibility-text {
  color: #ffffff !important;   /* same as web-dev section */
  opacity: 1;                  /* ensure no fade */
  text-shadow: none;           /* clean like reference */
}


.seo-packages-section {
  background: transparent;
  color: var(--white-color);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}


/* Cards */
.seo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 30px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(5, 158, 189, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

/* ICON STYLE */
.seo-card i {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid var(--accent-secondary-color);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2.4rem;
  color: var(--accent-secondary-color);
  margin: 0 auto 30px;

  transition: all 0.4s ease;
}

/* CARD HOVER */
.seo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(5, 158, 189, 0.5);
  border-color: var(--accent-secondary-color);
}

/* ICON HOVER – WHITE */
.seo-card:hover i {
  background: var(--accent-secondary-color);
  color: #ffffff !important;   /* FORCE WHITE */
  transform: scale(1.12);      /* NO ROTATION */
  box-shadow: 0 0 25px rgba(5, 158, 189, 0.55);
}


.seo-card h3 {
  font-size: 1.25rem;        /* same visual weight */
  font-weight: 600;
  color: #ffffff;            /* pure white like Google Ads */
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}


.seo-card p {
  color: #f2f2f2;            /*  SAME as Google Ads Why Choose Us */
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}


/* Hover animation */
.seo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(5, 158, 189, 0.5);
  border-color: var(--accent-secondary-color);
}

.seo-card:hover i {
  transform: scale(1.2) ;
  color: var(--accent-secondary-color);
}

/* Responsive */
@media (max-width: 991px) {
  .seo-card {
    margin-bottom: 30px;
  }
  .seo-packages-section .section-title h2 {
    font-size: 2rem;
  }
}


/* Common CSS FOR SEO SMM  GOOGLE ADS  website development  services  */

.seo-approach-section {
  background: transparent;
  color: var(--white-color);
  padding: 100px 0;
  overflow: hidden;
}

/* ============================= */
/* GRID LAYOUT (DEFAULT DESKTOP) */
/* ============================= */

.seo-steps-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* ============================= */
/* CARD DESIGN */
/* ============================= */

.seo-step {
  background: #FFFFFF0F;
  border-radius: 20px;
  padding: 40px 35px;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(5, 158, 189, 0.1);
  transition: all 0.4s ease;
  width: 100%;
}

.seo-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 45px rgba(5, 158, 189, 0.35);
}

/* ============================= */
/* ICON */
/* ============================= */

.seo-icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--accent-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: var(--accent-secondary-color);
  margin-right: 25px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.seo-step:hover .seo-icon {
  background: var(--accent-secondary-color);
  color: var(--white-color);
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(5, 158, 189, 0.55);
}

/* ============================= */
/* TEXT */
/* ============================= */

.seo-step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.seo-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #f2f2f2;
  margin: 0;
}

/* ============================= */
/* DESKTOP CENTER LAST CARD ONLY */
/* ============================= */

@media (min-width: 992px) {

  .seo-last {
    grid-column: 1 / -1;   /* span full row */
    max-width: 650px;      /* centered width */
    width: 100%;
    margin: 0 auto;
  }

}

/* ============================= */
/* TABLET (768–991px) */
/* ============================= */

@media (min-width: 768px) and (max-width: 991px) {

  .seo-steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-last {
    grid-column: 1 / -1;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .seo-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .seo-icon {
    margin-right: 20px;
  }

}

/* ============================= */
/* MOBILE (<767px) */
/* ============================= */

@media (max-width: 767px) {

  .seo-steps-list {
    grid-template-columns: 1fr;
  }

  .seo-last {
    grid-column: auto;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .seo-step {
    flex-direction: column;
    text-align: center;
  }

  .seo-icon {
    margin: 0 auto 20px;
  }

}

/* FORCE FIX FOR MOBILE */
@media (max-width: 767px) {

  .seo-steps-list {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .seo-step,
  .seo-last {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

}




