@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --orangeColor:#F58220;
  --whiteColor: #ffffff;
	--dimwhiteColor: #cac6c6;
	--redColor: #fc3220e8;
	--grayColor: #585757;
  --darkgrayColor: #222222;
	--boxShadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	--boxShadow2: 0 5px 5px 5px rgba(0,0,0,0.1);
  --limegrayColor:#e7ebf0;
  --formgrayColor:#F3F3F3;
  --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

*{
  box-sizing:border-box;
  transition: all .3s linear;
  text-decoration:none;
  outline:none;
  border:none;
  margin:0;
  padding:0;
  list-style-type:none;
  font-family: 'Urbanist', sans-serif;
  font-family: "Jost", sans-serif;
}

html {
  scroll-padding-top:10px;
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:10px;
}

a {
  color:var(--blackColor);
}
svg {
  display: block; 
}
body {
  background:var( --whiteColor);
}
::-webkit-scrollbar {
  width: 8px;
  }
::-webkit-scrollbar-track {
  background-color:var(--limegrayColor);
  }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #ff6c03, #000000);
  border-radius:2px;
  }  
.container {
  padding:20px;
  max-width: 1400px;
  margin:0 auto;
}
@media screen and (max-width:768px) {
  .container {
    padding:10px;
  }
}
/* New buttons*/
.main_button {
  min-width: 130px;
  padding: 14px 20px;
  font-weight: 500;
  font-size:16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  border-radius: 32px;
  z-index: 0;
  background: transparent;
  overflow: hidden;
  border: 2px solid var(--orangeColor);
  color: var(--whiteColor);
}
.main_button::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to left, #f58733 0%, #a22b2f 100%);
}
.main_button:hover {
  color: var(--whiteColor);
  border: none;
  border: 2px solid rgba(245, 135, 51,0.1);
}
.main_button span {
  padding-left:8px;
  font-size:20px;
}
.main_button:hover span {
  padding-left:10px;
}
.main_button:hover::after {
  width: 100%;
}

/* second-ripple-button */
.ripple-button {
  min-width: 130px;
  height: 44px;
  color: #fff;
  padding: 12px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius:5px;
  border: none;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  background:linear-gradient(to right,  var(--orangeColor) , #e85d04);
 z-index: 1;
}
.ripple-button:hover:after {
  width: 100%;
  left: 0;
}

.ripple-button:after {
  border-radius: 5px;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  z-index: -1;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
  background-color: linear-gradient(to left,  var(--orangeColor) , var(--redColor) );
  right: 0;
}
.ripple-button:active {
  top: 2px;
}
/* New buttons*/

.btn2 {
  padding: 14px 40px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius:25px;
  background: linear-gradient(to right, #f58733 0%, #a22b2f 100%);
  color:var(--whiteColor);
  background-size: 200% 100%; /* Create a "copy" of the gradient */
  transition: background-position 0.3s ease-in-out;
}
.btn2:hover {
  background-position: -100% 0;
}

.buttons {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--blackColor);
  padding: 14px 14px;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1
}
.buttons::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: var(--orangeColor);
  -webkit-transition: color .5s,-webkit-transform .3s;
  transition: color .5s,-webkit-transform .3s;
  transition: transform .3s,color .5s;
  transition: transform .3s,color .5s,-webkit-transform .3s;
  z-index: -1
}
.buttons:hover {
  color: var(--whiteColor)
}
.buttons:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0)
}

 /* buttons here */
.button {
  background: linear-gradient(to right, #f58733 0%, #a22b2f 100%);
  padding:15px 22px;
  border-radius:5px 15px 5px 15px;
  color:var(--whiteColor);
  font-size:16px;
  background-size: 200% 100%;
  transition:background-position .3s ease-in-out;
}
.button:hover {
  background-position:-100% 0;
}
.hero-button-container {
  padding:10px 0;
  margin-bottom:10px 0;
}
.hero-button-container a span {
  margin-left:15px;
  font-size:22px;
}

.hero-section {
  position: relative;
  height:50vh;
  background: linear-gradient(135deg, #0f4c5c 0%, #000000 40%, #0f4c5c 70%,#edbe9a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120px; 
  background: white; 
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  margin: 0 auto;
  padding: 1rem;
  padding-bottom: 4rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero-title {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff4d00, #0077b6);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 1.5rem auto;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.hero-breadcrumb a:hover {
  color: #ff4d00;
}

.hero-breadcrumb .separator {
  color: #ff4d00;
  font-size: 1.2rem;
}

.hero-breadcrumb .current {
  color: #1982C4;
  font-weight: 600;
}

/* Animated Background Elements */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  background: #ff4d00;
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  animation: float 15s infinite ease-in-out;
}

.circle-2 {
  background: #1982C4;
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
  animation: float 12s infinite ease-in-out reverse;
}

.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%, transparent 100%),
    linear-gradient(transparent 0%, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%, transparent 100%);
  background-size: 50px 50px;
  animation: moveLines 20s linear infinite;
}

.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveDots 40s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 30px) rotate(180deg); }
}

@keyframes moveLines {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-50px) translateY(-50px); }
}

@keyframes moveDots {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-30px) translateY(-30px); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .hero-section {
    min-height: 50vh;
  }
}
@media (max-width:500px) {
.hero-section {
  height: 40vh;
  padding-bottom: 10px;
}
.hero-section::after {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80px; 
}
}
  .grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(rgba(248, 245, 240, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(248, 245, 240, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
  }


  /* Geometric shapes */
  .shape {
    position: absolute;
    border: 2px solid var(--orangeColor);
    border: 2px solid rgba(255,255,255,0.2);
    opacity: 0.2;
    animation: shapeFloat 10s infinite ease-in-out;
  }
  
  .shape-1 {
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
  }
  
  .shape-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    bottom: 30%;
    left: 20%;
    border-radius: 20% 90% 60% 30% / 70% 30% 80% 40%;
    animation-delay: -5s;
  }
  
  .shape-3 {
    width: 90px;
    height: 90px;
    border-radius: 63% 32% 54% 46% / 55% 48% 52% 45%;
    top: 50%;
    left: 50%;
    animation-delay: -8s;
  }
  
  /* Animations */
  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
  }
  
  @keyframes shapeFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  @keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-30px) translateY(-30px); }
  }
  
  @keyframes slideUp {
    from { 
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-section {
      min-height: 40vh;
    }
  }
  .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .geometric-shape {
    position: absolute;
    background: var(--orangeColor);
    opacity:0.1;
    animation: float 20s infinite linear;
  }

  .shape1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 0s;
  }
  .shape2 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 30%;
    animation-delay: -5s;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  }

  .shape3 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }
  @keyframes float {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(100px, 50px) rotate(180deg);
    }
    100% {
      transform: translate(0, 0) rotate(360deg);
    }
  }
/* hero-section ends*/

/* buttons ends here */
.sub-heading {
  color:var(--blackColor);
  font-size:22px;
  padding:20px 0;
  text-align:center;
  font-weight:500;
}
@media (max-width:768px) {
  .sub-heading {  
    font-size:18px;
  }
}
.sub-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  position: relative;
}

.testimonial-sub-title {
  color:var(--whiteColor);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding:10px 0;
  position: relative;
}
.sub-title::after, .testimonial-sub-title::after {
  content:'';
  position: absolute;;
  width:10%;
  height:4px;
  background:#f58733;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
}
.chat-toggle {
  position: fixed;
  right:20px;
  bottom: 16px;
  z-index:3000;
  font-size:17px;
  cursor:pointer;
  border-radius:50%;
  width:50px;
  height:50px;
  color: white;
  transition:.6s ease-in-out;
  background:black;
}

#top-button {
  position: fixed;
  display:flex;
  justify-content:center;
  align-items:center;
  right:80px;
  opacity:0;
  bottom:0px;
  z-index:1500;
  font-size:17px;
  cursor:pointer;
  border:3px solid #14213d;
  border-radius:50%;
  width:44px;
  height:44px;
  color: #14213d;
  transition:.6s ease-in-out;
  background:var(--limegrayColor);
} 
#top-button::before {
  position: absolute;
  content: '';
  left:0;
  bottom:0;
  height:0%;
  width:100%;
  border-radius:50%;
  background:linear-gradient(to right,  #000000 , #14213d );
  transition:.3s ease-in-out;
  z-index:-1;
  color:var(--whiteColor);
  opacity:0;
}
#top-button.active {
  opacity:1;
  bottom: 16px;
}
#top-button:hover::before {
  height:100%;
  opacity:1;
 }  
 #top-button:hover {
  color:var(--whiteColor);
  border:3px solid rgba(1, 124, 143,0);
 } 
.whatsapp-container {
  position:fixed;
  right:15px;
  bottom:70px;
  z-index:1500;
  background:green;
  border-radius:50%;
  padding:12px 14px;
}
.whatsapp-container:hover {
  background:var(--blackColor);
  color:var(--whiteColor);
}
.whatsapp-float {
  font-size:26px;
  color:var(--whiteColor);
}
/*-----------Messages styling--------*/
.messages {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	max-width: 500px;
	width: 100%;
	padding: 14px;
	position: fixed;
	opacity: 0;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
    background: #e85d04;
    border-radius:5px;
	color: white;
	font-size: 15px;
	animation: fade_in_out 6s ease-in-out;
	z-index: 3000;
}
.messages-close {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 19px;
	color: white;
	font-size:20px;
	cursor: pointer;
}
.messages.hidden {
	display: none;
    pointer-events: none;
}
@keyframes fade_in_out {
	0% { opacity: 0; transform: translate(-50%, -40px); }
	30% { opacity: 1; transform: translate(-50%, 0); }
	70% { opacity: 1; transform: translate(-50%, 0); }
	100% { opacity: 0; transform: translate(-50%, -50px); }
}
/*Messages styling ends*/





/*----------- FAQ----------------*/
.faq-section {
  padding:10px;
  padding-top:50px;
}
.faq-container {
  max-width: 1000px;
  width:100%;
  margin: 0 auto;
  padding: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #fff;
  color: var(--blackColor);
  font-weight:500;
  font-size:17px;
  padding: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
  color: var(--orangeColor);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f3f3f3;
}

.faq-answer.active {
  padding: 20px;
  max-height: 200px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}
@media (max-width:768px) {
  .faq-container {
    padding: 5px;
  }
}
/*----------- Our process---------------*/
.our-approach-section {
  background-position: center center;
  background-repeat:no-repeat;
  background-size:cover;
  padding:50px 0;
  background-image: url("/static/images/waves-layered.540b9e71099f.svg");
}
.our-process-container {
  padding:60px 20px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:15px;
  justify-content:center;
}
.our-process-item {
  display:flex;
  flex-direction: column;
  justify-content:flex-start;
  gap:7px;
  align-items:center;
  border-radius:10px;
  padding:18px;
  color:var(--darkgrayColor);
  font-size:16px;
  border:0.5px solid var(--dimwhiteColor);
}
.our-process-item .process-number {
  width:54px;
  padding:10px;
  background: linear-gradient(to right, #f58733 0%, #ce5a5e 100%);
  border-radius:50%;
}
.our-process-item h4 {
  color:var(--blackColor);
  font-size:18px;
  line-height:28px;
  font-weight:700;
  text-align: center;
}
.our-process-item p {
  color:var(--darkgrayColor);
  font-size:17px;
  line-height:29px;
  font-weight: 400;
}
.our-process-item.active {
  color:var(--darkgrayColor);
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  font-size:16px;
  line-height:29px;
  transform:translateY(-8px);
  box-shadow:var(--boxShadow);
}
.our-process-item.active .process-number {
  background:var(--blackColor);
}
@media (min-width:768px) and (max-width:1024px) {
.our-process-container {
  grid-template-columns:repeat(2,1fr);
}
}
@media (max-width:768px) {
.our-process-container {
  grid-template-columns:1fr;
}
}
 /*-------------- Footer styling starts-------------------- */
 .footer {
  background:#0f4c5c;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  position:relative;
  z-index: 1000;
}
  
.footer-container {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  justify-content: center;
  padding:30px;
  gap:40px;
  padding-top: 50px;
  bottom:0;
  left:0;
  width:100%;
  color:var(--whiteColor);
}
.footer-logo {
  display:flex;
  gap:10px;
  justify-content:flex-start;
  align-items:center;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.footer-logo .footer-logo-img {
  width:150px;
}
.footer-content ul li  {
  padding:6px;
}
.footer-content ul li a {
  text-decoration: none;
  color:var(--whiteColor);
  font-size: 15px;
  font-weight:400;
}
.footer-content ul li a:hover {
  color:var(--orangeColor);
  padding-left:5px;
}

.ftco-heading-2 {
  padding:10px;
  font-size: 19px;
}
.footer-content> p {
  color:var(--whiteColor);
  font-size: 15px;
  line-height: 25px;
  padding-bottom: 30px;
}
.double-chevron {
  font-size: 20px;
  color:var(--orangeColor);
  margin-right:5px;
}
.subscribe_to_our_newsletter_title {
  color: var(--whiteColor);
  font-size:18px;
  font-weight: 500;
  margin-bottom:10px;
  
}
.footer-subscribe-form {
  margin: 14px 0;
}
.footer_subscribe_form {
  display: flex;
  gap: 5px;
  background: #fff;
  border: 1px solid #ccc;
}
.footer_subscribe_form .input {
  flex: 1;
  padding: 7px 12px;
  background: #fff;
}
.footer_subscribe_form button {
  background: var(--blackColor);
  color: var(--whiteColor);
  padding:3px 12px;
  cursor: pointer;
  font-size:15px;
}
.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--whiteColor);
  font-size: 16px;
  padding:30px;
  border-top: .1px solid var(--orangeColor);
}
.footer-copyright .designed {
  color:var(--whiteColor);
  font-size:14px;
}
.footer-copyright a {
  color:var(--orangeColor);
  font-size:14px;
}
.footer-icons {
  display:flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: end;
  gap:4px;
}
.ft-icon {
  border-radius: 50%;
  color: var(--blackColor);
  background:var(--formgrayColor);
  padding:2px;
  font-size:17px;
  height:26px;
  width:26px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.footer-content .ft-com-icon {
  padding-right:10px;
  font-size:18px;
  color:var(--orangeColor);
}
.ft-icon:hover {
  background: var(--orangeColor);
  color:var(--blackColor);  
}
.footer-content .ft-com-icon {
  padding-right:10px;
  font-size:15px;
  color: #ff4d00;
}
.ft-icon:hover {
  background: var(--orangeColor);
  color:var(--blackColor);  
}
.footer-content .ft-icon.fa-x-twitter {
  color: #fff;
  background: #000;
}
.footer-content .ft-icon.fa-facebook {
  color: #fff;
  background: #1982c4;
}
.footer-content .ft-icon.fa-instagram {
  color: #fff;
  background: #d6249f;
}
.footer-content .ft-icon.fa-tiktok {
  color: #fff;
  background: #000;
}
.footer-content .ft-icon.fa-youtube {
  color: #fff;
  background: red;
}
.copyright-mark {
  color:var(--orangeColor);
  padding-left:10px;
}
.text {
  font-size:16px;
  padding-left:5px;
}
@media (max-width:768px) {
  .footer-container {
  grid-template-columns: 100%;
}
}
/* Footer Styles Ends */


/*----------------------HOME STYLING------------------------*/

/*home hero content*/
.home_hero_section {
  height: 80vh;
  background: linear-gradient(135deg, #0f4c5c 0%, #232222 100%);
  color: var(--whiteColor);
  position: relative;
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  pointer-events: none;
}

.grid-line {
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(248, 147, 31,0.8);
  height: 100%;
}

.home-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
  position: relative;
  z-index: 1;
}

.home_hero_title {
  font-size: 3.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 800px;
  position: relative;
}
.home_hero_title::before{
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left:-30px;
  top:50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background:#F8931F;
}
.gradient-text {
  background: linear-gradient(to right, #F8931F, #f3f3f3, #F8931F, #f3f3f3, #F8931F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #e5e5e5;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.home_hero_buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.home_hero_buttons .home_hero_btn {
  padding: 1.2rem 2rem;
  border-radius: 0.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.button-primary {
  background: var(--whiteColor);
  color: var(--blackColor);
}

.button-primary:hover .arrow-svg {
  transform: translateX(5px);
}

.button-secondary {
  background: var(--orangeColor);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .home_hero_title {
      font-size: 2.5rem;
  }

  .home_hero_buttons {
      flex-direction: column;
  }

  .home_hero_buttons .home_hero_btn {
      width: 100%;
      justify-content: center;
  }
  .home_hero_title::before {
    display: none;
  }
}
/*home hero content ENDS*/


/*----------------------home-about------------------------*/
.about-row {
  margin-top:30px;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap:25px;
}
.about-image {
  max-width:500px;
  max-height:500px;
  margin:0 auto;
  width:100%;
  height:100%;
}

.about-image .main-about-image {
  width: 100%;
  height:100%;
  object-fit:cover;
  position:relative;
  animation: waffle 5s linear infinite alternate;
}

@keyframes waffle {
  0% {
      border-radius:46% 54% 40% 60% / 65% 55% 45% 35%;
 
  }
  25% {
      border-radius: 62% 43% 64% 43% / 39% 55% 47% 60%;
  }
  50% {
      border-radius: 46% 57% 51% 49% / 39% 44% 58% 65%;
  }
  75% {
    border-radius:46% 54% 37% 63% / 42% 32% 68% 58%;
  }
  100% {
      border-radius: 45% 60% 44% 57% / 52% 43% 68% 48%;
  }
}
@media screen and (max-width:768px) {
  .about-image .main-about-image {
    animation: none;
  }
}

@keyframes colors {
  100% {transform:hue-rotate(360deg)};
}

.about-section-image-container {
  width:100%;
  height:auto;
}
.about-section-image-container .about-section-image {
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-col-2 {
  padding:30px;
  position:relative;
}
.about-col-2 .bg-shape {
  position:absolute;
  right:20px;
  top:17px;
}

.about-sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  position: relative;
}
.about-sub-title::after {
  content:'';
  position: absolute;
  width:19%;
  height:4px;
  background:#f58733;
  bottom:0;
  left:0;
}
.about-body-text {
  font-size:16px;
  line-height:35px;
  padding:20px 0;
  padding-bottom:10px;
  color:var(--darkgrayColor);
  font-weight:400;
}
.get-started-button-container {
  display: flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:flex-start;
  align-items:center;
  margin:5px 0;
}

@media (max-width:768px) {
  .about-row {
    grid-template-columns: 1fr;
    gap:10px;
  }
.about-bg-underlay1, .about-bg-underlay2 {
  display:none;
}
.about-col-2 {
  padding:10px;
}
.get-started-button-container {
  gap:10px;
  justify-content:center;
  padding-top:0px;
  margin-top:10px;
  margin-bottom:10px;
}
.about-body-text {
  font-size:16px;
}
}
.about-contact-section {
  background-position:top;
  background-size:cover;
  background-repeat:no-repeat;
  height:50vh;
  position:relative;
  background-attachment: fixed;
}
.about-contact-section::after {
  content:'';
  background-color: rgba(0,0,0,0.6);
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:1;
}
.about-contact-container {
  display:grid;
  grid-template-columns:2fr 3fr;
  z-index:20;
  position: relative;
  height:100%;
}

.about-contact-col2 {
  background:
    linear-gradient(
    160deg,
      hsl(0, 0%, 1.96%) 0%,
      hsl(0, 0%, 10.86%) 50%,
      hsl(0, 0%, 23%) 70%,
      hsl(0, 0%, 61%) 100%
    );
  clip-path: polygon(14% 0,100% 0,100% 100%, 0% 100%);
  border:5px solid var(--orangeColor);
  display:flex;
  flex-direction: column;
  gap:5px;
  padding:50px;
  padding-left:120px;
  align-items:center;
  justify-content:center;
  margin-top:-20px;
  margin-bottom:-20px;
}
.about-contact-col2 .contact-page-header {
  color:var(--whiteColor);
  font-size:24px;
  padding-bottom:30px;
  font-weight:500;
}

@media (max-width:768px) {
  .about-contact-container {
    grid-template-columns:1fr;
}
.about-contact-col2 {
  clip-path: polygon(5% 0,100% 0,100% 100%, 0% 100%);
  border:2px solid var(--orangeColor);
  padding:10px;
  padding-left:30px;
}
.about-contact-col2 .contact-page-header {
  font-size:22px;
}
}
/* about section ends */


/*core-values section*/
.core-values-section {
  padding:10px 0;
  background:var(--formgrayColor);
}
.mission-vision-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  justify-content:center;
  align-items:center;
  padding:30px;
  margin-bottom:30px;
}
.mission-vision-container .vision-mission-card {
  padding:30px;
  border-radius:10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  background:var(--formgrayColor);
}
.mission-card {
  margin-top:-60px;
  margin-left:-50px;

}
.vision-card {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.icon-vision-container {
  display:flex;
  flex-wrap:nowrap;
  gap:20px;
  justify-content:flex-start;
  align-items:start;
}
.mission-title, .vision-title {
  display:inline-flex;
  text-align:center;
  font-size:21px;
  padding-bottom:10px;
  color: var(--darkgrayColor);
  font-weight:600;
}
.vision-mission-card p {
  font-size:16px;
  line-height:30px;
  color:var(--darkgrayColor);
  font-weight:400;
}
/*Core values */
.core-values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content:center;
  align-items:center;
  grid-gap: 20px;
  margin: 30px auto;
}

.core-value-card {
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  padding:10px;
  transition: all 0.3s ease-in-out;
}
.core-value-card:hover {
  transform: translateY(5px);
}

.core-value-card1 {
  border-left: 4px solid var(--blackColor);
}

.core-value-card2 {
  border-left: 4px solid #f39c12;
}

.core-value-card1:hover {
  border-left: 8px solid var(--blackColor);
  transition: all 0.3s linear;
}

.core-value-card2:hover {
  border-left: 8px solid #f39c12;
  transition: all 0.3s linear;
}

.icon-vision, .core-value-icon {
  font-size: 70px;
  color:var(--orangeColor);
  margin-right: 24px;
}

.core-value-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-size: 19px;
  color: var(--blackColor);
  margin-bottom: 14px;
}

.core-value-description {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
.cv-card ul li span {
  font-size:16px;
  color:var(--blackColor);
}
@media (max-width:768px) {
  .core-values-section {
    padding:10px 0;
  }
  .mission-vision-container {
    grid-template-columns:1fr;
    gap:10px;
    padding:1px;
  }
  .mission-vision-container .vision-mission-card {
    padding:10px;
    border-radius:5px;
  }
  .mission-card {
    margin-top:0px;
    margin-left:-0px;
  }
  .icon-vision-container {
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    align-items:start;
  }
  .icon-vision-container img {
    width:36px;
    height:36px;
  }
  .vision-mission-card h3, .cv-card h3 {
    display:block;
    text-align:center;
  }
  .core-value-card img {
    width:40px;
    height:40px;
  }
  .core-value-card h4 {
    font-size:22px;
    text-align: center;
  }
}

/*----------Home Blog styling starts--------------- */
.home-blog-section {
  padding:0;
}
.home-blog-row {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  margin:30px 0;
  padding:30px;
}
.home-blog-row .home-blog-card {
  height:fit-content;
  display:flex;
  flex-direction:column;
  background:var(--formgrayColor);
  color:var(--darkgrayColor);
  border-radius:2px;
  border:1px solid var(--formgrayColor);
}
.blog-image-container {
  width:100%;
  height:30vh;
  overflow: hidden;
}
.home-blog-row .home-blog-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:2px 0 0 2px;
}
.home-blog-row .home-blog-card:hover img {
  transform: scale(1.08);
  transition:.2s linear;
}
.home-blog-row .home-blog-card:hover {
 box-shadow:var(--boxShadow2);
 background:var(--whiteColor);
}
.blog-content-card {
  padding:20px 30px;
}
.home-blog-row .home-blog-card h3 {
 color:var(--blackColor);
 font-size:19px;
 font-weight:500;
 margin:8px 0;
}
.home-blog-row .home-blog-card .poster {
  color:var(--orangeColor);
  font-size:15px;
  margin:8px 0;
  opacity:0.7;
 }
.home-blog-row .home-blog-card p {
  color:var(--darkgrayColor);
  font-size:15px;
  line-height:28px;
  margin:10px 0;
  font-weight:400;
 }
 .home-blog-row .home-blog-card .blog-read-more-container{
  display:flex;
  justify-content:flex-start;
 }

 .home-blog-row .home-blog-card .blog-read-more {
  color:var(--whiteColor);
  background:var(--blackColor);
  font-size:14px;
  padding:12px;
  border-radius:8px;
 }
 .home-blog-row .home-blog-card .blog-read-more:hover {
  color:var(--blackColor);
  background:var(--orangeColor);
 }
 .more-blog-view-container {
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:30px;
 }
 .more-blog-view-container .blog-view-more {
  color:var(--blackColor);
  font-size:17px;
 }
 .more-blog-view-container .blog-view-more:hover {
  color:var(--orangeColor);
  transform:scale(1.05);
 }

 @media (min-width:600px) and (max-width:1024px) {
  .home-blog-row {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    margin:20px 0;
    padding:5px;
  }
}
@media (max-width:600px) {
  .home-blog-row {
    grid-template-columns:1fr;
    gap:10px;
    margin:20px 0;
    padding:5px;
  }
  .home-blog-row .home-blog-card img {
    height:30vh;
  }
  .home-blog-row .home-blog-card {
    height:fit-content;
    grid-template-columns:1fr;
    width:100%;
  }
  .blog-image-container {
    width:100%;
    height:100%;
  }
  .blog-content-card {
    padding:20px 10px;
  }
}

/*-------- home-our-process --------------*/
.home-our-approach {
  width:100%;
  height:80vh;
}
.home-our-approach img {
  width:100%;
  height:100%;
  object-fit:contain;
}
@media (max-width:768px) {
  #home-approach-section {
    display:none;
  }
}
/*-------- testimonial starts --------------*/
.testimony-section {
  background-color: var(--formgrayColor);
  padding:20px 0;
  padding-bottom: 50px;
  background-attachment: fixed;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  position: relative;
}

.testimony-section::after {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.5);
}

.testimonial-header {
  padding:20px;
  padding-top:10px;
}
.testimonial-sub-heading {
  font-size:23px;
  color:var(--dimwhiteColor);
  font-weight:500;
  text-align:center;
  padding:20px 0;
}
.testimonial-left {
  display:flex;
  justify-content:center;
  margin-top:20px;
  margin-bottom:20px;
  width:100%;
}

.review-swiper-container {
  width:60%;
}
.testimony-wrap {
  padding:30px;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--formgrayColor);
}
.testimony-img-container img {
  width:64px;
  height:64px;
  padding:8px;
  border-radius: 50%;
  background: var(--formgrayColor);
}
.testimony-body {
  padding-bottom:15px;
  overflow-wrap: break-word;
  text-align: center; 
  color:var(--grayColor);
  font-weight:400;
}
.testimony-body .testimonial-words {
  font-size:16px;
  line-height:30px;
  padding-bottom:10px;
  font-weight:400;
}
.testimony-body .name {
  font-size:16px;
  padding-bottom:10px;
  font-weight:600;
  color:var(--grayColor)
}
.fa-star {
  color:var(--orangeColor);
  font-size:15px;
  padding:2px;
}
.testimony-quote {
 margin-bottom:5px;
 font-size:23px;
 color:var(--grayColor);
}
@media (max-width:768px) {
  .review-swiper-container {
    width:100%;
  }
}
/* testimonial ends */


/* Subscribe-section */

.subscribe-form-container {
  max-width:1100px;
  width:100%;
  border-radius:10px;
  background:
    linear-gradient(
    170deg,
      hsl(0, 0%, 1.96%) 0%,
      hsl(0, 0%, 10.86%) 70%,
      hsl(0, 0%, 61%) 100%
    );
  padding:50px;
  margin:30px auto;
  display:grid;
  grid-template-columns:2fr 3fr 1fr;
  justify-content:center;
  align-items:center;
  gap:25px;
}

.subscribe-form-container .notify-col h3 {
  font-weight:700;
  font-size:26px;
  line-height:30px;
  color:var(--whiteColor);
  padding-bottom:10px;
}
.subscribe-form-container .notify-col h3 span {
  color:var(--orangeColor);
  padding-right:8px;
  font-weight:800;
}
.subscribe-form-container .notify-col p {
  font-weight:400;
  font-size:17px;
  line-height:30px;
  color:var(--whiteColor);
  padding-bottom:10px;
}
.subscribe-form-container .input-col input {
  font-weight:400;
  font-size:16px;
  color:var(--darkgrayColor);
  padding:16px;
  padding-left:20px;
  border-radius:25px;
  background:var(--whiteColor);
  width:100%;
}
.subscribe-form-container .input-col input:focus {
  background:var(--whiteColor);
  border:1px solid var(--orangeColor);
}
@media only screen and (max-width:768px) {
  .subscribe-form-container {
    width:100%;
    border-radius:5px;
    padding:30px 15px;
    margin:10px auto;
    grid-template-columns:1fr;
    gap:10px;
  }
  .subscribe-form-container .ripple-button-col .main_button {
    width:100%;
  }
}

/*services page styling STARTS*/
.services-page-section {
  margin:20px 0;
  position:relative;
}
  .services-title-container {
    padding-top:60px;
  }
@media only screen and (max-width:768px) {
  .services-page-section {
    clip-path:polygon(0 1%, 50% 0, 100% 1%, 100% 100%, 0 100%);
  }
}
/*Projects cards styling starts*/
.card-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  padding-bottom:60px;
}
.card-content {
  background-color:var(--whiteColor);
  position: relative;
  border-radius:2px;
  overflow:hidden;
}
.card-content .overlay {
  position: absolute;
  left:50%;
  bottom:30%;
  transform:translate(-50%,-50%);
  transition: 0.3s ease;
  opacity:0;
  z-index:2;
  display:flex;
  gap:3px;
  justify-content: center;
  align-items:center;
}
.card-content:hover .overlay {
  opacity:1;
  bottom:50%;
  cursor:pointer;
}
.card-content .overlay i {
  color:var(--orangeColor);
  background:var(--limegrayColor);
  padding:10px 20px;
  font-size:14px;
  border-radius:5px;
  font-weight:600;
}
.card-content .overlay i:hover {
  color:var(--blackColor);
  transform:scale(1.05);
}
.card-content .card-img {
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:2px 2px 0 0;
  transition:0.4s linear;
}
.card-content:hover .card-img {
  transform:scale(1.07);
}
.card-link-container {
  padding:15px;
}
.card-link-container a {
  color:var(--blackColor);
  line-height:30px;
  font-size:18px;
  font-weight:700;
}
.card-link-container p {
  color:var(--grayColor);
  line-height:30px;
  font-size:15px;
  font-weight:400;
  padding:10px 0;
}
.card-link-container i {
  color:var(--blackColor);
  font-size:14px;
  padding-left:8px;
}
.card-link-container a:hover {
  color:var(--orangeColor);
  transform:scale(1.05);
}
.card-link-container a:hover i {
  color:var(--orangeColor);
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns:100%;
    gap:15px;
  }
  .card-content {
    margin-bottom:0px;
}
}
@media (min-width: 600px) and (max-width:768px){
  .card-container {
    grid-template-columns:repeat(2, 1fr);
  }
}
/*Project styling ends*/



/*---------services details styling------------*/
.service-detail-section {
  padding-top:30px;
}
.service-detail-intro-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  justify-content:center;
}
.service-detail-intro {
  padding:0 50px;
}
.service-intro-image-container {
  width:100%;
  height:90%;
}
.service-intro-image-container img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.service-detail-title {
  padding:10px 0;
  text-align:start;
  font-size:30px;
  background:var(--blackColor);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  font-weight:800;
}
.service-detail-sub-title {
  padding:10px 0;
  text-align:center;
  font-size:25px;
  font-weight:700;
  background-image: linear-gradient(to right, var(--orangeColor) 0%, #000000 76%);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
}
.service-detail-text {
  font-size:17px;
  font-weight:400;
  color:var(--grayColor);
  line-height:30px;
}
.service-more-details {
  max-width:1000px;
  width:100%;
  margin:30px auto;
}

.ai-features-section {
  background: var(--formgrayColor);
  padding: 20px 0;
}

.ai-features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  justify-content: center;
  align-items: center;
}

.ai-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--grayColor);
  font-size: 16px;
  line-height: 28px;
  background: linear-gradient(to right, #ffffff, #e7ebf0);
  box-shadow: var(--boxShadow2);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}

.ai-feature:hover {
  box-shadow: var(--boxShadow);
  transform: translateY(-5px);
}

.ai-feature-illustration {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.ai-feature-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-feature p {
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .ai-features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 450px) {
  .ai-features-container {
    grid-template-columns: 1fr;
  }
  .service-detail-section {
    padding-top:10px;
  }
}

/*---------Website styling------------*/
.service-benefit-section, .web-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.web-service-benefits-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:1100px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.web-service-benefits-container .service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:15px;
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);

  border-radius:10px;
}
.web-service-benefits-container .service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.web-service-benefits-container .service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.web-service-benefits-container .service-benefit img {
  width:40px;
}
.web-service-benefits-container .service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.web-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:700px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.web-solutions-container .web-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to bottom,#ffffff, #f3f3f3);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding-left:10px;
  padding-bottom:10px;
}
.web-solutions-container .web-solution:hover {
  box-shadow:var(--boxShadow);
}
.web-solution .web-solution-illustration {
  width:60px;
  height:60px;
  object-fit:contain;
}
.web-solution .web-solution-illustration img {
  width:100%;
  height:100%;
  border-radius:10px;
}
@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.web-service-benefits-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.web-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
}

@media (max-width:450px) {
.web-service-benefits-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.web-solutions-container .web-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.web-solution .web-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.web-solutions-container {
  grid-template-columns:1fr;
}
}


/*---------Mobile app styling------------*/
.service-benefit-section, .service-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.mobile-service-benefits-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:1100px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.mobile-service-benefits-container .service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:15px;
  color:var(--grayColor);
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  font-size:15px;
  line-height:25px;
  border-radius:10px;
}
.mobile-service-benefits-container .service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.mobile-service-benefits-container .service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.mobile-service-benefits-container .service-benefit img {
  width:40px;
}
.mobile-service-benefits-container .service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.mobile-service-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:700px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.mobile-service-solutions-container .service-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding:10px;
  padding-top:0;
}
.mobile-service-solutions-container .service-solution:hover {
  box-shadow:var(--boxShadow);
}
.service-solution .service-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
.service-solution .service-solution-illustration img {
  width:100%;
  height:100%;
}
.service-tech-stack {
  max-width:700px;
  width:100%;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content: center;
}
.service-tech-stack .stack-img {
  width:60px;
}
.service-tech-stack .stack-img:hover {
  transform:translateY(-5px);
  cursor:pointer;
}
@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.mobile-service-benefits-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.mobile-service-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.service-tech-stack .stack-img {
  width:40px;
}
}

@media (max-width:450px) {
.mobile-service-benefits-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.mobile-service-solutions-container .service-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.service-solution .service-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.mobile-service-solutions-container {
  grid-template-columns:1fr;
}
}

/*---------UI_UX styling------------*/
.service-benefit-section, .ux-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.ux-service-benefit-container {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1050px;
  width:100%;
  margin:20px auto;
  text-align: center;
  justify-content:center;
  align-items:center;
}
.ux-service-benefit-container .ux-service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:12px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  font-size:15px;
  line-height:25px;
  border-radius:10px;
}
.ux-service-benefit-container .ux-service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.ux-service-benefit-container .ux-service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.ux-service-benefit-container .ux-service-benefit img {
  width:35px;
}
.ux-service-benefit-container .ux-service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.ux-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:800px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.ux-solutions-container .ux-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding-left:10px;
  padding-bottom:10px;
}
.ux-solutions-container .ux-solution:hover {
  box-shadow:var(--boxShadow);
}
.ux-solution .ux-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
.ux-solution .ux-solution-illustration img {
  width:100%;
  height:100%;
}

.service-tech-stack {
  max-width:700px;
  width:100%;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content: center;
}
.service-tech-stack .stack-img {
  width:60px;
}
.service-tech-stack .stack-img:hover {
  transform:translateY(-5px);
  cursor:pointer;
}

@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.ux-service-benefit-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.ux-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.service-tech-stack .stack-img {
  width:40px;
}
}

@media (max-width:450px) {
.ux-service-benefit-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.ux-solutions-container .ux-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.ux-solution .ux-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.ux-solutions-container {
  grid-template-columns:1fr;
}
}
/*---------E-commerce styling------------*/
.service-benefit-section, .e-commerce-solutions-section {
  background:var(--formgrayColor);
  padding:20px 0;
}
.e-comm-service-benefits-container {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1200px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.e-comm-service-benefits-container .service-benefit {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  padding:15px;
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
}
.e-comm-service-benefits-container .service-benefit h4 {
  color:var(--blackColor);
  font-size:17px;
  font-weight:700;
}
.e-comm-service-benefits-container .service-benefit p {
  color:var(--grayColor);
  font-size:15px;
  line-height:25px;
}

.e-comm-service-benefits-container .service-benefit img {
  width:40px;
}
.e-comm-service-benefits-container .service-benefit:hover {
  box-shadow:var(--boxShadow);
}

.e-commerce-solutions-container {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
  max-width:700px;
  width:100%;
  margin:20px auto;
  justify-content:center;
  align-items:center;
}
.e-commerce-solutions-container .e-commerce-solution {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:var(--grayColor);
  font-size:16px;
  line-height:28px;
  background:linear-gradient(to right,#ffffff, #e7ebf0);
  box-shadow:var(--boxShadow2);
  border-radius:10px;
  padding:10px;
}
.e-commerce-solutions-container .e-commerce-solution:hover {
  box-shadow:var(--boxShadow);
}
.e-commerce-solution .e-commerce-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
.e-commerce-solution .e-commerce-solution-illustration img {
  width:100%;
  height:100%;
}

.service-tech-stack {
  max-width:700px;
  width:100%;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content: center;
}
.service-tech-stack .stack-img {
  width:60px;
}
.service-tech-stack .stack-img:hover {
  transform:translateY(-5px);
  cursor:pointer;
}

@media (max-width:768px) {
.service-detail-intro-container {
  grid-template-columns:1fr;
}
.service-detail-intro {
  padding:0 20px;
}
.e-comm-service-benefits-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.e-commerce-solutions-container {
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  width:100%;
}
.service-tech-stack .stack-img {
  width:40px;
}
}

@media (max-width:450px) {
.e-comm-service-benefits-container {
  grid-template-columns:1fr;
  gap:10px;
  width:100%;
}
.e-commerce-solutions-container .e-commerce-solution {
  font-size:14px;
  line-height:25px;
  padding-left:8px;
  padding-bottom:8px;
  text-align:center;
}
.e-commerce-solution .e-commerce-solution-illustration {
  width:50px;
  height:50px;
  object-fit:contain;
}
}

@media (max-width:340px) {
.e-commerce-solutions-container {
  grid-template-columns:1fr;
}
}

/*---------Digital Marketing styling------------*/
.service-benefit-section, .web-solutions-section {
    background:var(--formgrayColor);
    padding:20px 0;
  }
  .dm-service-benefits-container {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
    max-width:1100px;
    width:100%;
    margin:20px auto;
    justify-content:center;
    align-items:center;
  }
  .dm-service-benefits-container .service-benefit {
    display:flex;
    flex-direction:column;
    gap:5px;
    justify-content:center;
    align-items:center;
    padding:15px;
    color:var(--grayColor);
    font-size:15px;
    line-height:25px;
    background:linear-gradient(to right,#ffffff, #e7ebf0);
    box-shadow:var(--boxShadow2);
    border-radius:10px;
  }
  .dm-service-benefits-container .service-benefit h4 {
    color:var(--blackColor);
    font-size:17px;
    font-weight:700;
  }
  .dm-service-benefits-container .service-benefit p {
    color:var(--grayColor);
    font-size:15px;
    line-height:25px;
  }
 
  .dm-service-benefits-container .service-benefit img {
    width:40px;
  }
  .dm-service-benefits-container .service-benefit:hover {
    box-shadow:var(--boxShadow);
  }

  .web-solutions-container {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:700px;
    width:100%;
    margin:20px auto;
    justify-content:center;
    align-items:center;
  }
  .web-solutions-container .web-solution {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:var(--grayColor);
    font-size:16px;
    line-height:28px;
    background:linear-gradient(to right,#ffffff, #e7ebf0);
    box-shadow:var(--boxShadow2);
    border-radius:10px;
    padding-left:10px;
    padding-bottom:10px;
  }
  .web-solutions-container .web-solution:hover {
    box-shadow:var(--boxShadow);
  }
  .web-solution .web-solution-illustration {
    width:60px;
    height:60px;
    object-fit:contain;
  }
  .web-solution .web-solution-illustration img {
    width:100%;
    height:100%;
    border-radius:10px;
  }
  .payment-integration-tech-stack {
    width:100%;
    max-width:40vh;
    margin:0 auto;
  }
  .payment-integration-tech-stack img {
    width:100%;
  }
  @media (max-width:768px) {
  .service-detail-intro-container {
    grid-template-columns:1fr;
  }
  .service-detail-intro {
    padding:0 20px;
  }
  .dm-service-benefits-container {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    width:100%;
  }
  .web-solutions-container {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    width:100%;
  }
  }

  @media (max-width:450px) {
  .dm-service-benefits-container {
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
  }
  .web-solutions-container .web-solution {
    font-size:14px;
    line-height:25px;
    padding-left:8px;
    padding-bottom:8px;
    text-align:center;
  }
  .web-solution .web-solution-illustration {
    width:50px;
    height:50px;
    object-fit:contain;
  }
  }

  @media (max-width:340px) {
  .web-solutions-container {
    grid-template-columns:1fr;
  }
  }

/*---------END OF SERVICE DETAIL styling------------*/


/* Enquiry Popup -----------*/

.enquiry-form-popup {
  position:fixed;
  bottom:0;
  left:0;
  color:var(--whiteColor);
  background:var(--blackColor);
  padding:8px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  z-index:5000;
}
#modal-btn {
  cursor:pointer;
}
.form-modal {
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  display:flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background:rgba(0,0,0,0.4);
  transform:scale(0);
  transition:0.6s ease-in-out;
  padding:8px;
}
.form-modal.active {
  opacity: 1;
  z-index: 3000;
  transform:scale(1)
}

.popup-form-title {
  color:var(--blackColor);
  font-weight:800;
  font-size:25px;
  padding-bottom:15px;
  text-align: center;
}
#popup-form {
  position:relative;
}
#popup-form i {
  position:absolute;
  top:15px;
  right:20px;
  padding:5px 7px;
  background:var(--blackColor);
  color:var(--whiteColor);
  font-size:15px;
  border-radius:50%;
  cursor:pointer;
}
#popup-form i:hover {
  background:var(--redColor);
  color:var(--whiteColor);
}
@media (max-width:768px) {
  .popup-form-title {
    font-size:23px;
    text-align: left;
  }
  #popup-form i {
    top:10px;
    right:15px;
  }
  .enquiry-form-popup {
   display:none;
  }
}


/*Blogs list page styling */
.blogs-container {
  max-width: 1600px;
  margin: 20px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.all_blogs_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-top: 20px;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card {
  background: white;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-3px);
}
.post-image-container {
  overflow: hidden;
  border-radius: 1px 1px 0 0;
  position: relative;
  height: 200px;
  width:100%;
}

.post-image-container .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:0.3s linear;
}
.post-content {
  padding: 24px;
}

.post-tag {
  display: inline-block;
  padding:6px 10px;
  background: var(--formgrayColor);
  color: var(--orangeColor);
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 8px;
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  line-height:30px;
  position: relative;
}
.post-title::after {
  content: "";
  position: absolute;
  width: 10%;
  left:0;
  bottom:0;
  height: 1.8px;
  margin-bottom:10px;
  background: var(--orangeColor);
}
.post-title:hover::after {
  width:100%;
  transition: width 0.3s ease-in-out;
}
.post-excerpt {
  padding:10px 0;
  color: var(--grayColor);
  line-height: 1.6;
}
.blog-post-tags {
  margin-top:14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border:1px solid #ccc;
  background:#f3f3f3;
  padding:2px;
  object-fit: cover;
}
/*Blogs Sidebar */
.blogs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 70px;
  height: fit-content;
}

.sidebar-section {
  background: white;
  border-radius: 5px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--orangeColor);
  border-radius: 50%;
}

.blogs-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blogs-search-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  font-size: 15px;
  outline: none;
}

.blogs-search-input:focus {
  border-color: var(--orangeColor);
}

.search-button {
  padding: 12px 20px;
  background: var(--orangeColor);
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
}

.search-button:hover {
  background: var(--orangeColor);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.recent-post-item-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.related-blog-image {
  width: 60px;
  height: 60px;
  object-fit:contain;
}

.blogs_categories_list {
  max-height:200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all_tags-list {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
} 

.recent-post-item {
  text-decoration: none;
  padding-bottom:5px;
  color: var(--darkgrayColor);
  transition: color 0.1s ease;
  border-bottom: 1px solid rgba(204, 204, 204,0.5);
}
.recent-post-item span {
  margin-right:10px;
  font-size:25px;
  color: var(--orangeColor);
  transition: color 0.1s ease;
}
.recent-post-item:hover span {
  transform:translateX(-10px);
}
.recent-post-item:hover {
  color: var(--orangeColor);
}
.search_query_title {
  font-size:22px;
  font-weight:500;
  color:#232323;
  padding:10px 0;
}
.search_query_title>span {
  color:var(--orangeColor);
}
.search_results_count {
  font-size:17px;
  color:#232323;
  font-weight:400;
}
.search_results_count>span {
  color:#000000;
  font-weight:500;
}
.no_blogs_found {
  display:flex; 
  justify-content: center; 
  align-items: center; 
  min-height:50vh;
}
.no_blogs_found .no_blogs_text {
  color:#2d3436;
  font-size:18px;
}

@media (max-width: 768px) {
  .blogs-container {
    grid-template-columns: 1fr;
    padding:8px;
    padding-bottom:20px;
  }

  .post-image-container {
    height: 200px;
  }
  .post-content {
    padding: 10px;
  }
  
  .post-image-container .post-image {
   object-fit: cover;
  }
}


/*Blog detail page */
.blog-detail-section {
  max-width:1400px;
  margin:30px auto;
  width:100%;
  padding:30px;
  padding-top:20;
  margin-top:0;
  line-height:30px;
  color:#333;
  min-height:100vh;
}
.blog_details_grid {
  display:grid;
  grid-template-columns: 4fr 2fr;
  gap:30px;
  justify-content:center;
  padding-top:20px;
}
.blog-detail {
  line-height: 30px;
  padding:20px;
  color:#333;
}
.blog-detail .blog_detail_title {
  color: var(--blackColor);
  font-size: 23px;
  padding: 15px 0;
  font-weight:600;
  line-height: 30px;
  position: relative;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::after {
  position: absolute;
  content: "";
  height: 2px;
  width:30%;
  left:0;
  bottom: 0;
  background-color: var(--orangeColor);
  border-radius: 25px;
  transition:all 0.4s linear;
}
.blog-detail .blog_detail_title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--orangeColor);
  border-radius: 50%;
  left:0;
  top:50%;
  margin-right:6px;
  transform: translateY(-50%);
}
.blog-detail .blog_detail_title:hover::after{
  width:100%;
}
.post-meta .dot {
  color: var(--orangeColor);
  font-size: 16px;
}

.blog-cover-image-container {
  display:flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding:10px 0;
}
.blog-cover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:5px;
}

.blog-content img {
 width:100%;
 height:auto;
 object-fit: cover;
}
  .comments_container h4 {
    text-align: left;
    font-size:20px;
    font-weight:500;
    color:#000000;
    padding:15px 0;
  }
  .comments_container .blog-comment {
    display:flex;
    flex-direction: column;
    gap:4px;
    color:#000000;
    padding-bottom:8px;
    border-bottom:1px solid #f3f3f3;
  }
  .comments_container .no-blog-comments-container {
    display:flex;
    justify-content: center;
    align-items: center;
    color:#313030;
  }
  .blog_comment_form .form-group {
    display:flex;
    gap:10px;
    }
  .blog_comment_form input {
    width:100%;
    border:1px solid #ccc;
    background:#ffffff;
    padding:12px;
    color:#2d3436;
    font-size:16px;
    margin:10px 0;
    border-radius:8px;
  }
  .blog_comment_form textarea {
    width:100%;
    border-radius:8px;
    border:1px solid #ccc;
    background:#ffffff;
    padding:12px;
    color:#2d3436;
    font-size:16px;
    margin:10px 0;
    resize: vertical;
    height:100px;
  }
  .blog_comment_form input::placeholder,
  .blog_comment_form textarea::placeholder {
    color:#2d3436;
  }
  .blog_comment_form input:focus,
  .blog_comment_form textarea:focus {
    border:1px solid var(--orangeColor);
  }
  .blog_comment_form .blog_comment_btn {
    width:30%;
    border:1px solid #ccc;
    background:var(--orangeColor);
    color:#ffffff;
    padding:14px 20px;
    font-size:15px;
    border-radius:5px;
  }
  .blog_comment_form .blog_comment_btn:hover {
    border:1px solid var(--orangeColor);
    background:#ffffff;
    color:var(--orangeColor);
    cursor: pointer;
  }
@media (max-width:600px) {
  .blog_comment_form .blog_comment_btn {
    width:100%;
  }
}
@media (max-width:430px) {
  .blog-cover-image-container {
    margin-top:20px;
    height: 200px;
    padding:0;
  }
  .blog-cover-image-container img {
   border-radius:2px;
  }
}
@media screen and (max-width:768px) {
  .blog_details_grid {
    grid-template-columns: 1fr;
}
.blog-detail-section {
    padding:8px;
    padding-top:30;
}
.blog-detail {
    padding:10px;
}
}

/* CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #0f4c5c, #347d8f);
  padding: 60px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  animation: wave 15s infinite linear;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.contact-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-phone {
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  color: white;
}

/* CTA Section */
.services-cta {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  padding: 40px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 100,80 100,100" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: wave 10s infinite ease-in-out;
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

.services-cta h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.services-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-btn {
  background: white;
  color: #ff6b35;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #ff6b35;
}
