/*--------------------- Google fonts ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins: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;1,900&display=swap');


/* --------------------- CSS Global variables ------------*/
:root
{
	/*------------ Colors -------------*/
	--primary-color: #963cdd;     /*---- Purple ----*/
	--secondary-color: #16b824;   /*---- Blue ------*/
	--third-color: #000000;       /*----- Black ------*/
	--fourth-color: #ffffff;      /*---- White ------*/
	--blue-color: #44ce25;    /*---- Button Blue -----*/
	--yellow-color: green;  /*---- 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: 'Poppins', sans-serif;
	margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container
{
	padding: 2rem;
}

.heading
{
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 1.5rem 0;
	margin-bottom: 1rem;
}

.sub-heading
{
	color: var(--secondary-color);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0.5rem 0;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

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

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

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

.white
{
	color: #ffffff;
}

.para-line
{
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 20px;
	padding: 0 15px;
}

.para-line.white
{
	color: #fff;
}

.head-desc
{
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
	padding: 0 20px;
}

.service .para-line
{
	padding: 0 10px;
	margin-bottom: 15px;
}

.why-us-content .para-line
{
	padding: 0 20px;
	margin-bottom: 25px;
}

.about .para-line
{
	padding: 0 20px;
	margin-bottom: 25px;
}

.testimonial .para-line
{
	max-width: 800px;
	margin: 0 auto 30px;
	padding: 0 20px;
}

.btn, .btn a, .btn-full-w, .btn-full-w a {
  text-decoration: none !important;
}

.btn
{
	padding: 0.8rem 6rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn a
{
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0px;
}


/*-------------------------- Menu style -------------------------*/
.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: 1px;
  transition: all .5s ease-in-out;
}

.nav-wrapper ul.nav-list li a:hover, .nav-wrapper ul.nav-list li.active a
{
  color: green;
}

nav ul.dropdown-list
{
  list-style-type: none;
  display: block;
  background: whitesmoke;
  padding: 6px 16px;
  position: absolute;
  width: max-content;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
}

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

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

.nav-wrapper ul.nav-list li:hover .dropdown-list
{
  opacity: 1;
  pointer-events: auto;
  animation: moveUp .5s ease-in-out forwards;
}


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

.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: 35px;
	height: 3px;
	margin: 6px 0;
	transition: transform 0.3s ease-in-out;
  }
  
  .mobile ul.nav-list {
	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: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-100%);
	z-index: 9998;
  }
  
  .hamberger, .brand {
	z-index: 9999;
  }
  
  .mobile ul.nav-list.open {
	opacity: 1;
	pointer-events: auto;
	z-index: 999;
	transform: translateY(0);
  }
  
  .mobile ul.nav-list li a {
	font-size: 20px;
  }
  
  .mobile ul.dropdown-list {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
  }
  
  .mobile .nav-wrapper ul.dropdown-list li a {
	color: #7f8fa6;
  }
  
  .mobile .nav-wrapper ul.dropdown-list li a:hover {
	color: var(--third-color);
  }
  
  .mobile .nav-wrapper ul li:hover .dropdown-list {
	display: block;
	opacity: 1;
	padding-top: 6px;
  }
  
  .mobile ul.nav-list li {
	margin-left: 0;
	text-align: center;
  }
/*-------------------------- 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 --------------*/

/*-------- 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: 1.2rem 2rem;
	display: block;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}



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

.hero .hero-container
{	
	width: 100%;
	height: 90vh;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
	z-index: 2;
}

.hero-container .row > .col
{
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.hero-content
{
	padding: 0 2rem 3.6rem 2rem;
}

.hero-heading
{
	font-size: 2.3rem;
	line-height: 1.1;
}

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

.hero-bg-slideshow {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-bg-slide {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

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

.hero .hero-container,
.hero .row,
.hero .hero-content {
	position: relative;
	z-index: 2;
}
/*----------------- 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%) 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;
}

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

.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
{
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	padding: 1rem;
	background: #f3f8ff;
}
/*----------------- Why Us section styling ---------------*/



/*----------------- Services section styling ---------------*/
.service-img
{
	border-radius: 5px;
	margin: 0 0 2rem 0;
}

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

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.services .service {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    overflow: hidden;
    padding: 0;
    display: block;
}

.services .service .service-icon {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block;
    margin: 0;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: none;
}

.service-heading {
    font-weight: 700;
    font-size: 1.25rem;
    color: #222;
    margin: 0 0 0.7rem 1.5rem;
    padding: 0;
    text-align: left;
}

.service .para-line {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.2rem 1.5rem;
    padding: 0;
    text-align: left;
}

.service .learn-more {
    font-weight: 700;
    color: #222;
    margin-left: 1.5rem;
    margin-top: auto;
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-block;
    transition: color 0.2s;
}

.service .learn-more:hover {
    color: #16b824;
    text-decoration: underline;
}

.service:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.service-heading {
    font-weight: 600;
    padding: 1rem 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service .para-line {
    padding: 0 1rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.services .service:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 25px 50px -12px;
    transform: translateY(-5px);
}

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

.service .service-heading
{
	font-weight: 600;
	padding: 1rem 0;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.service-content {
    padding: 2.2rem;
}
/*----------------- Services section styling ---------------*/



/*----------------- Overline section styling ---------------*/
.overline
{
	background: linear-gradient(rgba(10, 17, 79, 0.9), rgba(10, 17, 79, 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;
	padding: 1rem 0;
	margin-bottom: 0.5rem;
}
/*----------------- 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 ion-icon
{
	color: var(--yellow-color);
	font-size: 1.6rem;
}

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

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

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



/*----------------- Testimonial section styling --------------*/
.testimonial
{
	background: linear-gradient(rgba(10, 17, 79, 0.9), rgba(10, 17, 79, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial .container
{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 400px;
}

.testimonial-slide {
    display: none;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.testimonial-nav-btn:hover {
    background: #fff;
}

.testimonial-nav-btn ion-icon {
    font-size: 24px;
    color: #1877f2;
}

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

.profile-img
{
	border-radius: 50px;
}

.client-name
{
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	padding: 0.5rem 0;
	margin-bottom: 0.25rem;
}

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

.stars ion-icon
{
	color: var(--yellow-color);
}
/*----------------- Testimonial section styling --------------*/


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

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

.agent-name
{
	font-size: 2rem;
	font-weight: 600;
	padding: 1rem 0;
	margin-bottom: 0.5rem;
}

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


/*----------------- Footer styling ------------------*/
footer
{
	background: #251963;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.6rem 0;
}
/*----------------- Footer styling ------------------*/






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

	.container
	{
		padding: 4rem 0;
	}

	.heading
	{
		font-size: 3.2rem;
		padding: 2rem 0;
		margin-bottom: 1.5rem;
	}

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

	.sub-heading
	{
		padding: 0.75rem 0;
		margin-bottom: 1.5rem;
	}

	.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;
	}
	.mobile .hamburger {
		display: flex;
	  }
	
	  .mobile ul.nav-list {
		display: flex;
		flex-direction: column;
		padding-top: 80px;
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
	  }


	/*-------------- 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(13, 14, 56, 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, .partners-grid
	{
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		padding: 1rem;
	}
	/*-------------- 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 ---------------*/

	.service-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 2.5rem;
    }

    .service-heading {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .service .para-line {
        padding: 0 1.5rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 10px; /* Reduce space between nav items */
    }

    .nav-list a {
        font-size: 14px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hamberger {
        display: flex; /* Show hamburger menu */
    }

    .nav-list {
        display: none; /* Hide full navigation */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .nav-list.show {
        display: flex; /* Show navigation when toggled */
    }

    .nav-list li {
        text-align: center;
        padding: 10px 0;
    }

    .dropdown-list {
        position: static;
        box-shadow: none;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services .service {
        min-height: 380px;
        padding: 2rem 1.5rem;
    }

    .service-icon {
        height: 180px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .nav-wrapper {
        padding: 5px 10px; /* Reduce padding */
    }

    .nav-list a {
        font-size: 12px; /* Smaller font */
    }

    .btn-blue {
        padding: 5px 7px; /* Smaller button */
        font-size: 12px;
    }

    .hamberger span {
        width: 20px; /* Smaller hamburger lines */
    }
}

/* --- Enhanced Button --- */
.btn, .btn-full-w {
    background: linear-gradient(90deg, #16b824 60%, #44ce25 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn:hover, .btn-full-w:hover {
    background: linear-gradient(90deg, #44ce25 60%, #16b824 100%);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.16);
    color: #fff !important;
}

/* --- Feature Cards --- */
.why-us-col {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}
.why-us-col:hover {
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.why-us-col ion-icon {
    background: #16b824;
    color: #fff;
    border-radius: 50%;
    padding: 1rem;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- Section Spacing --- */
section {
    padding: 4rem 0 3rem 0;
}

@media (max-width: 900px) {
    .lead-form {
        padding: 1.5rem 0.7rem;
    }
    .why-us-col {
        padding: 1.2rem 0.5rem;
    }
    section {
        padding: 2.5rem 0 2rem 0;
    }
    .heading {
        font-size: 2rem;
    }
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
  height: 350px;
  background: #eee;
}

.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  transition: opacity 0.5s;
}

.carousel-slide.active {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.3em 0.7em;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
.carousel-btn:hover { background: rgba(0,0,0,0.7); }

@media (max-width: 900px) {
  .hero-carousel {
    max-width: 100%;
    height: 220px;
  }
  .carousel-slide img {
    border-radius: 12px;
  }
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 0.7rem;
  z-index: 3;
  position: relative;
}
.testimonial-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  border: 2px solid #FFD700;
}
.testimonial-dot.active {
  background: #FFD700;
  opacity: 1;
}

/* --- Testimonial Slider Professional Styles --- */
.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  min-height: 400px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  justify-content: center;
  align-items: center;
}

.testimonial-slide.active {
  opacity: 1;
  display: flex;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid #FFD700;
}

.client-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-location {
  font-size: 0.95rem;
  opacity: 0.8;
}

.stars {
  margin: 0.5rem 0 0 0;
  font-size: 1.3rem;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  z-index: 10;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow.prev { left: 10px; }
.testimonial-arrow.next { right: 10px; }

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.testimonial-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  z-index: 10;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.testimonial-dot.active {
  background: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .testimonial-slider {
    min-height: 420px;
    padding: 0 0.5rem;
  }
  .testimonial-slide {
    padding: 1rem 0.2rem 0.5rem 0.2rem;
  }
  .profile-img {
    width: 48px;
    height: 48px;
  }
}

/* Facebook-style testimonial enhancements */
.testimonial-slide {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(24, 119, 242, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  color: #1c1e21;
  margin: 0 auto;
  max-width: 600px;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
}

.testimonial-slide .para-line.white {
  color: #1c1e21;
  font-size: 1.08rem;
  font-style: normal;
  margin-bottom: 1.2rem;
}

.client-name ion-icon[name="logo-facebook"] {
  margin-right: 0.4em;
  color: #1877f3;
  font-size: 1.2em;
}

.client-name ion-icon[name="checkmark-circle"] {
  margin-left: 0.3em;
  color: #1877f3;
  font-size: 1.1em;
}

.fb-label {
  display: inline-block;
  font-size: 0.85rem;
  color: #1877f3;
  background: #e7f3ff;
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.testimonial-profile {
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
}

.stars {
  margin-top: 0.7rem;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #FFD700; /* Gold color */
    margin: 0 0 5px 0;
}

.testimonial-rating {
    color: #FFD700; /* Gold color */
    font-size: 20px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 10px;
    max-width: 500px;
    width: 100%;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #FFD700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-name ion-icon {
    color: #1877f2;
    font-size: 16px;
}

.testimonial-meta {
    color: #65676b;
    font-size: 13px;
}

.testimonial-text {
    color: #1c1e21;
    font-size: 15px;
    line-height: 1.5;
    margin: 12px 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 18px;
    margin-top: 12px;
    display: flex;
    gap: 2px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Hide scrollbar but keep functionality */
.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Testimonial Slideshow Styles */
.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    min-height: 400px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.testimonial-nav-btn:hover {
    background: #fff;
}

.testimonial-nav-btn ion-icon {
    font-size: 24px;
    color: #1877f2;
}

.testimonial-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    z-index: 10;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-dot.active {
    background: #FFD700;
}

@media (max-width: 768px) {
    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-nav-btn ion-icon {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr !important;
    padding: 0 2vw !important;
    gap: 12px !important;
  }
  .service {
    max-width: 98vw !important;
    margin: 0 auto 18px auto !important;
    padding: 10px 8px 20px 8px !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07) !important;
  }
  .service-icon {
    width: 100% !important;
    max-width: 220px !important;
    height: auto !important;
    margin: 0 auto 10px auto !important;
    border-radius: 14px !important;
    display: block !important;
  }
  .service-heading {
    font-size: 19px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  .service .para-line {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #444 !important;
    text-align: left !important;
    word-break: normal !important;
    margin: 0 auto !important;
    max-width: 97vw !important;
  }
}


