/*--------------------- Google fonts ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Geist:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* --------------------- CSS Global variables ------------*/
:root
{
	/*------------ Colors -------------*/
	--primary-color: #963cdd;     /*---- Purple ----*/
	--secondary-color: #80c1ff;   /*---- Light Blue ------*/
	--third-color: #000000;       /*----- Black ------*/
	--fourth-color: #ffffff;      /*---- White ------*/
	--blue-color: #3399ff;    /*---- Button Light Blue -----*/
	--yellow-color: #fcb900;  /*---- Button Yello ----*/


	/*------------ Font Size --------------*/
	--heading-font-size: 1.5rem;
	--paragraph-font-size: 1rem;
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html
{
	font-size: 16px;
}

body
{
	font-family: 'Geist', sans-serif;
}

.container
{
	padding: 2rem;
}

.heading
{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1rem 0;
	letter-spacing: -0.3px;
	color: #000;
}

.sub-heading
{
	color: var(--secondary-color);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}

img
{
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Outfit', sans-serif;
}

p
{
	font-family: 'Geist', sans-serif;
}

.white
{
	color: #ffffff;
}

.para-line
{
	font-size: 1rem;
	line-height: 1.5;
}

.btn
{
	display: inline-block;
	text-decoration: none;
	padding: 0.5rem 1.2rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-size: 0.85rem;
}

.btn:hover
{
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn a
{
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	display: inline-block;
}

.btn-small
{
	padding: 0.25rem 0.5rem !important;
	font-size: 0.55rem !important;
}

.btn-small a
{
	font-size: 0.6rem !important;
	letter-spacing: 0.2px !important;
}


/*-------------------------- Top Bar style -------------------------*/
.top-bar
{
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
  padding: 16px 0;
  border-bottom: 1px solid #e0e8f0;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.top-bar-content
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.top-bar-text
{
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}

.top-bar-buttons
{
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-bar-btn
{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--blue-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.15);
}

.top-bar-btn:hover
{
  background: var(--yellow-color);
  color: var(--third-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(252, 185, 0, 0.25);
}

.top-bar-btn:active
{
  transform: translateY(-1px);
}

.top-bar-btn ion-icon
{
  font-size: 1rem;
}

/*-------------------------- Menu style -------------------------*/
nav
{
  position: sticky;
  top: 54px;
  background: var(--fourth-color);
  z-index: 10000;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  transition: all 0.3s ease;
}

.menu-container
{
  width: 1152px;
  max-width: 90%;
  margin: 0 auto;
}

.nav-wrapper
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper ul.nav-list
{
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-wrapper ul.nav-list li 
{
  margin-left: 30px;
  padding: 20px 0;
  position: relative;
}

.nav-wrapper ul.nav-list li a
{
  color: var(--third-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
}

.nav-wrapper ul.nav-list li a ion-icon
{
  font-size: 1.3rem;
}

.nav-wrapper ul.nav-list li a.dropdown-toggle
{
  cursor: pointer;
}

.nav-wrapper ul.nav-list li a::after
{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-color);
  transition: width 0.3s ease;
}

.nav-wrapper ul.nav-list li a:hover::after
{
  width: 100%;
}

.nav-wrapper ul.nav-list li a:hover
{
  color: var(--blue-color);
}

.nav-wrapper ul.nav-list li.active a
{
  color: var(--blue-color);
}

.nav-wrapper ul.nav-list li.active a::after
{
  width: 100%;
}

.nav-wrapper ul.nav-list li.active a:hover
{
  color: var(--primary-color);
}

.phone-btn
{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px !important;
  background: var(--blue-color);
  color: var(--fourth-color) !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-bottom: 10px !important;
}

.phone-btn:hover
{
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 153, 255, 0.3);
}

.phone-btn:hover::after
{
  display: none !important;
}

.phone-btn ion-icon
{
  font-size: 1.2rem;
}

.phone-btn span
{
  font-size: 0.9rem;
}

.quote-btn
{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px !important;
  background: var(--yellow-color);
  color: var(--third-color) !important;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-bottom: 10px !important;
}

.quote-btn:hover
{
  background: var(--blue-color);
  color: var(--fourth-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 185, 0, 0.3);
}

.quote-btn:hover::after
{
  display: none !important;
}

.quote-btn ion-icon
{
  font-size: 1.2rem;
}

.quote-btn span
{
  font-size: 0.9rem;
}

nav ul.dropdown-list
{
  list-style-type: none;
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 8px 0;
  position: absolute;
  width: max-content;
  min-width: 180px;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(150, 60, 221, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(150, 60, 221, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
}

.nav-wrapper ul.dropdown-list li
{
  margin-left: 0;
  padding: 0;
}

.nav-wrapper ul.dropdown-list li a
{
  color: var(--third-color);
  display: block;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.nav-wrapper ul.dropdown-list li a::before
{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue-color);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-wrapper ul.dropdown-list li a:hover
{
  color: var(--blue-color);
  background: rgba(51, 153, 255, 0.08);
  padding-left: 26px;
}

.nav-wrapper ul.dropdown-list li a:hover::before
{
  transform: scaleY(1);
}

.nav-wrapper ul.nav-list li:hover .dropdown-list
{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scaleY(1);
  animation: none;
}

.nav-wrapper ul.nav-list li .dropdown-list.show
{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scaleY(1);
  animation: none;
}

.nav-wrapper .nav-list li .btn a
{
	color: var(--fourth-color);
	padding-bottom: 0;
}

.nav-wrapper .nav-list li .btn a::after
{
	display: none;
}

.nav-wrapper .nav-list li .btn:hover a
{
	color: var(--third-color);
}

@keyframes moveUp
{
  0%
  {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }
  100%
  {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }
}

.hamberger
{
  display: none;
}

.mobile .hamberger
{
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  cursor: pointer;
}

.mobile .hamberger span
{
  background: var(--third-color);
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
}

.mobile ul.nav-list
{
  background: -webkit-linear-gradient(45deg, #f5f6fa, #dcdde1);
  background: linear-gradient(45deg, #f5f6fa, #dcdde1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: All .3s ease-in-out;
}

.hamberger, .brand
{
  z-index: 9999;
}

.brand a
{
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.brand img
{
	height: 50px;
	width: 50px;
	border-radius: 50%;
	vertical-align: middle;
	object-fit: cover;
}

.brand-text
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.brand-first
{
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
}

.brand-second
{
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--third-color);
	line-height: 1.2;
}

.mobile ul.nav-list.open
{
  opacity: 1;
  pointer-events: auto;
  z-index: 999;
  overflow-y: auto;
}


.mobile .hamberger span
{
  transform-origin: left;
  transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a
{
  font-size: 20px;
  display: block;
  padding: 12px 0;
}

.mobile ul.nav-list li a::after
{
  display: none;
}

.mobile ul.dropdown-list
{
  position: relative;
  background: transparent;
  text-align: center;
  height: 0;
  overflow-y: hidden;
  transition: opacity 1s ease-in-out;
  padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list
{
  height: max-content;
  padding-top: 6px;
}

.mobile ul.nav-list li
{
  margin-left: 0;
  text-align: center;
}

.mobile .nav-wrapper ul.dropdown-list li a
{
  color: #7f8fa6;
}

.mobile .nav-wrapper ul.dropdown-list li a:hover
{
	color: var(--third-color);
}
/*-------------------------- Menu style -------------------------*/


/*----------- Scroll to top --------------*/
#topBtn
{
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--blue-color);
  color: #white;
  border: none;
  cursor: pointer;
  display: none;
}

#topBtn ion-icon
{
	color: #fff;
}
/*----------- Scroll to top --------------*/

/*----------- WhatsApp Floating Button --------------*/
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    width: 280px;
    justify-content: flex-start;
    padding-left: 15px;
}

.whatsapp-float .whatsapp-tooltip {
    display: none;
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
    color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    display: block;
}

.whatsapp-float ion-icon {
    font-size: 35px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float ion-icon {
        font-size: 30px;
    }
    .whatsapp-float:hover {
        width: 260px;
    }
}
/*----------- WhatsApp Floating Button --------------*/

/*-------- Blue button ---------*/
.btn-blue
{
	background: var(--blue-color);
	transition: 0.3s ease-in-out;
}

.btn-blue:hover
{
	background: var(--yellow-color);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover > a
{
	color: var(--third-color);
}

.btn-blue
{
	background: var(--blue-color);
	transition: 0.3s ease-in-out;
}

.btn-blue:hover
{
	background: var(--yellow-color);
}

.btn-blue a
{
	color: var(--fourth-color);
}

.btn-blue:hover > a
{
	color: var(--third-color);
}

/*---------- Yellow btn ----------*/
.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow > a
{
	color: #000;
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

.btn-yellow
{
	background: var(--yellow-color);
	transition: 0.3s ease-in-out;
}

.btn-yellow:hover
{
	background: var(--blue-color);
}

.btn-yellow a
{
	color: var(--third-color);
}

.btn-yellow:hover > a
{
	color: var(--fourth-color);
}

/*------------ Full width button ------------*/
.btn-full-w
{
	padding: 0.6rem 1.5rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



/*----------------- Hero section styling ----------------*/
.hero
{
	background: linear-gradient(rgba(150, 60, 221, 0.4), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero .hero-carousel-container
{	
	position: relative;
	width: 100%;
	height: 90vh;
	overflow: hidden;
}

.hero-carousel-track
{
	position: relative;
	height: 100%;
}

.hero-carousel-slide
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-carousel-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero-slide-content
{
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	padding: 0 2rem 3.6rem 2rem;
	max-width: 600px;
	animation: slideInUp 0.8s ease-out;
}

.hero-slide-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 5%;
	margin-bottom: 3.6rem;
}

.hero-figure-container {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	animation: slideInRight 1s ease-out;
}

.hero-figure {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	text-align: left;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-figure .amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--yellow-color);
	display: block;
	margin-top: 0.5rem;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-heading
{
	font-size: 2.8rem;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.inner-row .inner-col
{
	margin: 1rem 0;
}

.hero-carousel-btn
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.8);
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s ease;
}

.hero-carousel-btn:hover
{
	background: var(--fourth-color);
	transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn ion-icon
{
	font-size: 1.5rem;
	color: var(--third-color);
}

.hero-carousel-prev
{
	left: 1rem;
}

.hero-carousel-next
{
	right: 1rem;
}

.hero-carousel-dots
{
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.8rem;
	z-index: 100;
}

.hero-dot
{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hero-dot.active
{
	background: var(--fourth-color);
	width: 28px;
	border-radius: 6px;
}

.hero-dot:hover
{
	background: var(--yellow-color);
}
/*----------------- Hero section styling ----------------*/


/*----------------- Why Us section styling ---------------*/
.why-us
{
	background-image: linear-gradient(
	  155deg,
	  hsl(215deg 100% 98%) 0%,
	  hsl(215deg 100% 98%) 30%,
	  hsl(215deg 100% 98%) 38%,
	  hsl(215deg 100% 98%) 43%,
	  hsl(215deg 100% 98%) 47%,
	  hsl(215deg 100% 98%) 48%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 98%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 50%,
	  hsl(215deg 100% 99%) 51%,
	  hsl(215deg 100% 100%) 53%,
	  hsl(215deg 100% 100%) 55%,
	  hsl(215deg 100% 100%) 60%,
	  hsl(215deg 100% 100%) 68%,
	  hsl(0deg 0% 100%) 96%
	);
}

.why-us-col ion-icon
{
	font-size: 2rem;
	color: var(--fourth-color);
	background: var(--yellow-color);
	padding: 1rem;
	border: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-block;
}

.why-us-col:hover ion-icon
{
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 20px rgba(252, 185, 0, 0.3);
}

.why-us-highlight-heading
{
	font-size: 1.4rem;
	font-weight: 700;
	margin: 1rem 0 0.5rem 0;
}

.lead-form
{
	border: none;
	border-radius: 12px;
	margin: 2.5rem 0;
	padding: 3rem 1.6rem;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.input-field
{
	display: flex;
	flex-direction: column;
	margin: 1rem 0;
}

.input-field label
{
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.3rem 0;
	text-transform: uppercase;
}

.input-field input,
.input-field select,
.input-field textarea
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}

.input-field select
{
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2em 1.2em;
	padding-right: 2.5rem;
}

.input-field select:hover
{
	background: #e8f2ff;
}

.input-field select:focus
{
	outline: none;
	background-color: #e8f2ff;
}

.dropdown-checkbox-wrapper
{
	position: relative;
	margin-top: 0.5rem;
}

.dropdown-checkbox-toggle
{
	width: 100%;
	padding: 1rem;
	background: #f3f8ff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1rem;
	color: #333;
	transition: all 0.3s ease;
}

.dropdown-checkbox-toggle:hover
{
	background: #e8f2ff;
}

.dropdown-checkbox-toggle ion-icon
{
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.dropdown-checkbox-toggle.open ion-icon
{
	transform: rotate(180deg);
}

.dropdown-checkbox-menu
{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #ffffff;
	border: 1px solid #e0e8f0;
	border-radius: 5px;
	margin-top: 0.5rem;
	padding: 0.8rem 0;
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 100;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	max-height: 300px;
	overflow-y: auto;
}

.dropdown-checkbox-menu.open
{
	display: flex;
}

.checkbox-option
{
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

.checkbox-option:hover
{
	background: #f8f9fa;
}

.checkbox-option input[type="checkbox"]
{
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #3399ff;
	flex-shrink: 0;
	margin: 0;
}

.checkbox-option .checkbox-label
{
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	color: #333;
	text-transform: none;
	margin: 0;
	flex: 1;
}

/*----------------- Why Us section styling ---------------*/



/*----------------- Services section styling ---------------*/
.service-img
{
	border-radius: 5px;
	margin: 0;
	height: auto;
	max-height: 400px;
	width: 100%;
	object-fit: cover;
	display: block;
}

.service-img-overlay-container
{
	position: relative;
	margin-bottom: 2rem;
	overflow: hidden;
	border-radius: 5px;
}

.service-img-overlay-content
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
	text-align: center;
	padding: 2rem;
}

.service-img-overlay-content .heading
{
	padding: 0.5rem 0;
	font-size: 2.8rem;
}

@media (max-width: 768px) {
	.service-img-overlay-content .heading {
		font-size: 1.8rem;
	}
}

.our-services .services
{
	margin: 2rem 0;
}

.services .service
{
	border: none;
	border-radius: 12px;
	margin: 1.5rem 0;
	padding: 2rem;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: center;
}

.services .service:hover
{
	transform: translateY(-8px);
	box-shadow: rgba(51, 153, 255, 0.25) 0px 20px 40px;
	background: linear-gradient(135deg, rgba(51, 153, 255, 0.05) 0%, rgba(150, 60, 221, 0.05) 100%);
}

.service ion-icon
{
	color: var(--yellow-color);
	font-size: 2.6rem;
}

.service .service-heading
{
	font-weight: 600;
}

.service-btns
{
	display: flex;
	gap: 10px;
	margin-top: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}
/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.insurance-policies
{
	border-radius: 6px;
}

.overlines .row .col
{
	margin: 2.6rem 0;
}

.overlines .row .col ion-icon
{
	font-size: 2.6rem;
}

.overline-heading
{
	color: var(--yellow-color);
	font-size: 1.3rem;
	font-weight: 600;
}
/*----------------- Overline section styling ---------------*/


/*----------------- About us section styling ---------------*/
.about-highlights
{
	margin: 2rem 0;
}

.about-highlight-line
{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.about-highlight-line.highlight-link
{
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.about-highlight-line.highlight-link:hover
{
	opacity: 0.8;
}

.about-highlight-line ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

.highlight-line-heading
{
	font-size: 1rem;
	font-weight: 600;
}

.team-avatars
{
	display: flex;
	gap: 1rem;
	margin-left: auto;
}

.team-avatar-link
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.team-avatar-link:hover
{
	transform: scale(1.1);
}

.team-avatar-img
{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-color);
	transition: all 0.3s ease;
}

.team-avatar-link:hover .team-avatar-img
{
	border-color: var(--yellow-color);
	box-shadow: 0 0 8px rgba(51, 153, 255, 0.3);
}

.team-avatar-name
{
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--dark-color);
	text-align: center;
	white-space: nowrap;
}

.about-img
{
	border-radius: 6px;
	margin-top: 4rem;
}

.partners
{
	margin: 4rem 0;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    background: transparent;
    --partner-gap: 5rem;
}

@media (max-width: 767px) {
    .partners-slider {
        --partner-gap: 2rem;
    }
}

.partners-track {
    display: flex;
    gap: var(--partner-gap);
    width: max-content;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.partner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.partner-label {
    font-size: 0.75rem;
    color: var(--blue-color);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .partner-img {
        height: 40px;
    }
}

.partner-img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - (var(--partner-gap) / 2)));
    }
}
/*----------------- About us section styling ---------------*/




/*----------------- Our Clients Section Design ----------------*/
.clients-section {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.clients-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.clients-split {
    display: flex;
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.clients-international-side {
    flex: 1;
    padding: 4rem 4rem 4rem 10%;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.clients-local-side {
    flex: 1;
    padding: 4rem 10% 4rem 4rem;
    background: #dceeff;
    position: relative;
    z-index: 2;
}

/* Slanted Vertical Divider */
.clients-local-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 100px;
    height: 100%;
    background: #dceeff;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    z-index: -1;
}

.clients-local-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 100px;
    height: 100%;
    background: var(--blue-color);
    opacity: 0.5;
    clip-path: polygon(0 0, 0 2px, calc(100% - 2px) 0, 100% 0);
    z-index: 1;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.client-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    height: 110px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(51, 153, 255, 0.1);
    border-color: var(--blue-color);
}

.client-card-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-side-header {
    margin-bottom: 3rem;
}

.client-side-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--third-color);
    position: relative;
    padding-bottom: 1rem;
}

.client-side-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-color);
}

@media (max-width: 600px) {
    .clients-split {
        flex-direction: column;
    }

    .clients-international-side {
        margin-top: 40px;
        padding: 4rem 1.5rem;
    }

    .clients-local-side {
        padding: 4rem 1.5rem;
    }

    .clients-local-side::before {
        bottom: -40px;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 0 100%);
        z-index: -1;
    }

    .clients-local-side::after {
        bottom: -40px;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 40px;
        clip-path: polygon(0 0, 100% 0, 2px 0, 0 2px);
        background: var(--blue-color);
        opacity: 0.5;
        z-index: 1;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*----------------- Our Clients Section Design ----------------*/


/*----------------- Testimonial section styling --------------*/
.testimonial
{
	background: linear-gradient(rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.testimonial-profile
{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 1rem;
}

.profile-img
{
	border-radius: 50px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.profile-img:hover
{
	transform: scale(1.05);
}

.client-name
{
	font-size: 1.1rem;
	font-weight: 700;
	text-align: left;
}

.client-location
{
	text-align: left;
	opacity: 0.9;
}

.stars
{
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.stars ion-icon
{
	color: var(--yellow-color);
	font-size: 1.5rem;
	transition: transform 0.2s ease;
}

.stars ion-icon:hover
{
	transform: scale(1.1) rotate(10deg);
}
/*----------------- Testimonial section styling --------------*/


/*----------------- Agent card styling -----------------------*/
.agent-card
{
	text-align: center;
}

.agent-img
{
	border-radius: 50%;
}

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
}

.agent-number, .agent-email
{
	margin: 1rem 0;
	font-size: 0.9rem;
}
/*----------------- Agent card styling -----------------------*/


/*----------------- Footer styling ------------------*/
footer
{
	background: #3399ff;
	color: var(--fourth-color);
	padding: 4rem 0 2rem 0;
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-col h3 {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	color: var(--yellow-color);
}

.footer-col p {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.8;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 0.8rem;
}

.footer-col ul li a {
	color: var(--fourth-color);
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.footer-col ul li a:hover {
	opacity: 1;
	color: var(--yellow-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-bottom-text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-bottom p {
	font-size: 0.85rem;
	opacity: 0.7;
	text-align: center;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	color: var(--fourth-color);
	font-size: 1.5rem;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--yellow-color);
}
/*----------------- Footer styling ------------------*/






/*--------------------------------------------------------------*/
/*-------------------- Mobile Screen Styling (< 768px) --------*/
/*--------------------------------------------------------------*/
@media screen and (max-width: 767px)
{
	:root
	{
		--heading-font-size: 1.2rem;
		--paragraph-font-size: 0.9rem;
	}

	html
	{
		font-size: 14px;
	}

	.container
	{
		padding: 1.5rem;
	}

	.heading
	{
		font-size: 1.8rem;
		padding: 0.8rem 0;
	}

	.sub-heading
	{
		font-size: 0.85rem;
	}

	.para-line
	{
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.row
	{
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.inner-col
	{
		width: 100%;
	}

	/*-------------- Hero section styling ------------------*/
	.hero .hero-carousel-container
	{
		height: 60vh;
	}

	.hero-heading
	{
		font-size: 1.6rem;
		line-height: 1.2;
	}

	.hero-slide-content
	{
		padding: 0 1rem 2rem 1rem;
		max-width: 100%;
	}

	.hero-slide-flex {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 2rem;
	}

	.hero-figure-container {
		width: 100%;
		justify-content: flex-start;
		padding-left: 1rem;
		margin-top: 1rem;
	}

	.hero-figure {
		font-size: 1.4rem;
		text-align: left;
	}

	.hero-figure .amount {
		font-size: 2.2rem;
		margin-top: 0.5rem;
	}

	.hero-carousel-btn
	{
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.hero-carousel-btn ion-icon
	{
		font-size: 1.2rem;
	}

	.hero-carousel-prev
	{
		left: 0.5rem;
	}

	.hero-carousel-next
	{
		right: 0.5rem;
	}

	.hero-carousel-dots
	{
		bottom: 1rem;
		gap: 0.6rem;
	}

	.hero-dot
	{
		width: 8px;
		height: 8px;
	}

	.hero-dot.active
	{
		width: 24px;
	}
	/*-------------- Hero section styling ------------------*/

	/*-------------- Navigation styling ------------------*/
	.menu-container
	{
		width: 100%;
		max-width: 95%;
	}

	.brand img
	{
		height: 40px;
		width: 40px;
	}

	.brand-first
	{
		font-size: 1rem;
	}

	.brand-second
	{
		font-size: 0.65rem;
	}

	.phone-btn span
	{
		display: none;
	}

	.phone-btn
	{
		padding: 10px 12px !important;
	}

	.nav-wrapper ul.nav-list li
	{
		margin-left: 0;
		padding: 0;
	}
	/*-------------- Navigation styling ------------------*/

	/*-------------- Top Bar styling ------------------*/
	.top-bar
	{
		padding: 12px 0;
	}

	.top-bar-content
	{
		flex-direction: column;
		gap: 12px;
	}

	.top-bar-text
	{
		font-size: 0.9rem;
		text-align: center;
		margin-right: 0 !important;
	}

	.top-bar-buttons
	{
		width: 100%;
		flex-direction: row;
		gap: 8px;
		justify-content: center;
	}

	.top-bar-btn
	{
		flex: 1;
		justify-content: center;
		padding: 6px 10px;
		font-size: 0.75rem;
	}

	nav
	{
		top: auto;
	}
	/*-------------- Top Bar styling ------------------*/

	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 2rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 100%;
	}

	.why-us-col
	{
		text-align: center;
	}

	.why-us-highlight-heading
	{
		font-size: 1.1rem;
	}

	.lead-form
	{
		margin: 1.5rem 0;
		padding: 1.5rem 1rem;
	}

	.input-field
	{
		margin: 1rem 0;
	}

	.input-field input
	{
		padding: 0.8rem;
		font-size: 0.95rem;
	}

	.btn-full-w
	{
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
	}

	.btn
	{
		padding: 0.5rem 1rem;
		font-size: 0.75rem;
	}

	.btn a
	{
		font-size: 0.9rem;
		letter-spacing: 0.3px;
	}
	/*-------------- Why us styling ---------------------*/

	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 100%;
		margin: 0 auto;
		font-size: 0.9rem;
	}

	.service-img
	{
		margin: 0 0 1rem 0;
		max-width: 100%;
		height: auto;
		max-height: 300px;
		width: 100%;
		object-fit: cover;
		display: block;
	}

	.services
	{
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin: 1.5rem 0;
	}

	.services .service
	{
		margin: 0;
		padding: 1.5rem 1rem;
		border-radius: 8px;
	}

	.service ion-icon
	{
		font-size: 2rem;
	}

	.service-heading
	{
		font-size: 1.1rem;
	}
	/*-------------- Services section styling --------------*/

	/*-------------- Overline section styling ---------------*/
	.overlines .row
	{
		flex-direction: column;
	}

	.overlines .row .col
	{
		margin: 1rem 0;
	}

	.overlines .row .col ion-icon
	{
		font-size: 2rem;
	}

	.overline-heading
	{
		font-size: 1.1rem;
	}

	.insurance-policies
	{
		margin: 1rem 0;
		max-width: 100%;
	}
	/*-------------- Overline section styling ---------------*/

	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 1.5rem;
	}

	.about-highlights
	{
		margin: 1rem 0;
	}

	.about-highlight-line
	{
		gap: 0.8rem;
		margin: 0.8rem 0;
	}

	.about-highlight-line ion-icon
	{
		font-size: 1.4rem;
	}

	.highlight-line-heading
	{
		font-size: 0.95rem;
	}

	.about-img
	{
		margin-top: 2rem;
		border-radius: 6px;
	}

	.partners
	{
		margin: 1.5rem 0;
	}
	/*-------------- About section styling ------------------*/

	/*-------------- Testimonial section styling ---------------*/
	.testimonial-profile
	{
		flex-direction: column;
		gap: 0.8rem;
		margin: 0.8rem;
	}

	.profile-img
	{
		width: 60px;
		height: 60px;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}

	.client-name
	{
		font-size: 1rem;
		text-align: center;
	}

	.client-location
	{
		text-align: center;
		font-size: 0.9rem;
	}

	.testimonial .container .para-line
	{
		max-width: 100%;
		font-size: 0.95rem;
	}

	.testimonial
	{
		padding: 2rem 0;
	}

	.stars
	{
		gap: 0.4rem;
	}

	.stars ion-icon
	{
		font-size: 1.3rem;
	}
	/*-------------- Testimonial section styling ---------------*/

	/*-------------- Scroll to top button ------------------*/
	#topBtn
	{
		bottom: 20px;
		right: 20px;
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	/*-------------- Scroll to top button ------------------*/

	/*-------------- Footer styling ------------------*/
	footer
	{
		padding: 2rem 0 1rem 0;
	}

	.footer-top
	{
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}

	.footer-col h3
	{
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}

	.footer-col p
	{
		font-size: 0.85rem;
	}

	.footer-col ul li
	{
		margin-bottom: 0.6rem;
	}

	.footer-col ul li a
	{
		font-size: 0.85rem;
	}

	.footer-bottom
	{
		flex-direction: column;
		gap: 0.8rem;
	}

	.footer-bottom p
	{
		font-size: 0.8rem;
		text-align: center;
	}

	.social-links
	{
		justify-content: center;
		gap: 0.8rem;
	}

	.social-links a
	{
		font-size: 1.3rem;
	}
	/*-------------- Footer styling ------------------*/
}

/*--------------------------------------------------------------*/
/*-------------------- Tablet Screen Styling (768px - 1024px) -*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px)
{
	:root
	{
		--heading-font-size: 1.4rem;
	}

	html
	{
		font-size: 15px;
	}

	.container
	{
		padding: 3rem 1.5rem;
	}

	.heading
	{
		font-size: 2.4rem;
		padding: 0.8rem 0;
	}

	.para-line
	{
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 1.5rem;
	}

	.row .col
	{
		width: 48%;
	}

	.inner-row
	{
		display: flex;
		gap: 1.5rem;
	}

	/*-------------- Hero section styling ------------------*/
	.hero .hero-carousel-container
	{
		height: 70vh;
	}

	.hero-heading
	{
		font-size: 2.2rem;
		line-height: 1.15;
	}

	.hero-slide-content
	{
		padding: 0 1.5rem 2.5rem 1.5rem;
		max-width: 80%;
	}

	.hero-figure {
		font-size: 1.8rem;
	}

	.hero-figure .amount {
		font-size: 2.8rem;
	}

	.hero-carousel-btn
	{
		width: 44px;
		height: 44px;
	}

	.hero-carousel-btn ion-icon
	{
		font-size: 1.4rem;
	}
	/*-------------- Hero section styling ------------------*/

	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 3rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 55%;
	}

	.why-us-content .inner-row
	{
		margin-top: 1.5rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 2rem !important;
	}

	.input-field
	{
		margin: 1.2rem 0;
	}
	/*-------------- Why us styling ---------------------*/

	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 80%;
		margin: 0 auto;
	}

	.services
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1.5rem;
		margin: 2rem 0;
	}

	.services .service
	{
		padding: 1.8rem;
	}

	.service ion-icon
	{
		font-size: 2.4rem;
	}
	/*-------------- Services section styling --------------*/

	/*-------------- Overline section styling ---------------*/
	.overlines .row
	{
		flex-direction: row;
		gap: 2rem;
	}

	.overlines .row .col
	{
		margin: 1.5rem 0;
	}

	.overlines .row .col ion-icon
	{
		font-size: 2.4rem;
	}

	.overline-heading
	{
		font-size: 1.2rem;
	}

	.insurance-policies
	{
		margin: 1.5rem 0;
		max-width: 100%;
	}
	/*-------------- Overline section styling ---------------*/

	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 2.5rem;
	}

	.about-img
	{
		margin-top: 2rem;
	}

	.partners
	{
		margin-top: 3rem;
	}
	/*-------------- About section styling ------------------*/

	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 100%;
		font-size: 1rem;
	}

	.testimonial-profile
	{
		gap: 1rem;
	}

	.profile-img
	{
		border: 3px solid rgba(255, 255, 255, 0.3);
	}

	.testimonial
	{
		padding: 3rem 0;
	}

	.stars ion-icon
	{
		font-size: 1.4rem;
	}
	/*-------------- Testimonial section styling ---------------*/

	/*-------------- Footer styling ------------------*/
	footer
	{
		padding: 3rem 0 1.5rem 0;
	}

	.footer-top
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		margin-bottom: 2rem;
	}

	.footer-col h3
	{
		font-size: 1.2rem;
	}

	.footer-col ul li
	{
		margin-bottom: 0.7rem;
	}

	.footer-bottom
	{
		flex-direction: row;
		justify-content: space-between;
	}

	.footer-bottom p
	{
		text-align: left;
	}

	.social-links
	{
		gap: 0.8rem;
	}
	/*-------------- Footer styling ------------------*/
}

/*--------------------------------------------------------------*/
/*-------------------- Desktop Screen Styling (1025px+) -------*/
/*--------------------------------------------------------------*/
@media screen and (min-width: 1025px)
{
	.container, .hero-container
	{
		max-width: 1180px;
		margin: 0 auto;
	}

	.container
	{
		padding: 4rem 0;
	}

	.heading
	{
		font-size: 3.2rem;
	}

	.para-line
	{
		line-height: 1.8;
	}

	.sub-heading
	{
		font-size: 1rem;
	}

	.row
	{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 2rem;
	}

	.row .col
	{
		width: 100%;
	}

	.inner-row
	{
		display: flex;
		gap: 2rem;
	}


	/*-------------- Hero section styling ------------------*/
	.hero-container .row > .hero-content
	{
		width: 140%;
	}

	.hero-heading
	{
		font-size: 4rem;
	}

	.hero
	{
		background: linear-gradient(rgba(150, 60, 221, 0.2), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/*-------------- Hero section styling ------------------*/


	/*-------------- Why us styling ---------------------*/
	.why-us .container .row
	{
		gap: 5rem;
	}

	.why-us .container .row .why-us-content
	{
		width: 150%;
	}

	.why-us-content .inner-row
	{
		margin-top: 2rem;
	}

	.lead-form
	{
		background: var(--fourth-color);
		padding: 3rem !important;
	}

	.input-field
	{
		margin: 1.5rem 0;
	}
	/*-------------- Why us styling ---------------------*/


	/*-------------- Services section styling --------------*/
	.our-services
	{
		text-align: center;
	}

	.our-services .container .head-desc
	{
		max-width: 66%;
		margin: 0 auto;
	}

	.services
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2rem;
		align-items: center;
		justify-items: center;
	}

	/*-------------- Services section styling --------------*/



	/*-------------- About section styling ------------------*/
	.about .container .row
	{
		gap: 4rem;
	}

	.partners
	{
		margin-top: 4rem;
	}
	/*-------------- About section styling ------------------*/


	/*-------------- Testimonial section styling ---------------*/
	.testimonial .container .para-line
	{
		max-width: 840px;
		margin: 0 auto;
		font-size: 1.1rem;
	}

	.testimonial
	{
		padding: 4rem 0;
	}
	/*-------------- Testimonial section styling ---------------*/
}