@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@200;300;400;500;600;700;800&family=Nunito+Sans:wght@200;300;400;500;600;700;800&display=swap');
:root{
	--primary-color: #016BB5;
  --primary-color-hover: #0b3c70;
  --secondary-color: #FDA035 ;
  --secondary-color-hover: #FF8900 ;
  --at-white-color: #ffffff;
  --accent-color: #43a047;
  --light-bg: #eef7ff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --heading-font: 'Bricolage Grotesque', sans-serif;
  --body-font: 'Nunito Sans', sans-serif;
  --theme-peach: #FFF6F3;
}
.sub-heading {
  font-size: 18px;
    color: var(--accent-color);
}
.bg-theme-peach-soft {
  background-color: var(--theme-peach);
}
.text-theme-peach-soft {
  color: var(--theme-peach);
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--bs-bg-opacity)) !important;
}

body{
  padding: 0;
  margin: 0;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--heading-font);
  font-weight: 600;
}

p, span, li, a, button, input, textarea{
  font-family: 'Nunito Sans', sans-serif;
}


.container{
	max-width: 1320px;
}
*{
	box-sizing: border-box;
}
img{
	max-width: 100%;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
	padding: 0;
	margin: 0;
}
a{
	transition: .6s;
	-webkit-transition: .6s;
	display: inline-block;
	text-decoration: none;
	color: #363636;
}
a:hover{
	color: #FF8900;
}
h1 {
	font-weight: bold;
	font-size: 52px;
	color: #fff;
}
h2 {
	font-weight: bold;
	font-size: 40px;
}
h3 {
	font-size: 28px;
}
p:last-child{
	margin-bottom: 0;
}
.p-tb{
	padding-top: 80px;
	padding-bottom: 80px;
}
.pt{
	padding-top: 80px;
}
.pb{
	padding-bottom: 80px;
}

.btn-theme {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 50px;
  background: var(--primary-color); !important;
  color: var(--at-white-color) !important;
  text-decoration: none;
  border: 1px solid #174f8f;
  transition: all 0.3s ease;
}

/* Hover */
.btn-theme:hover {
  background: var(--primary-color-hover);
  border-color: var(--primary-color-hover);
  color:  var(--at-white-color) !important;
}


.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 50px;
  color: #174f8f;
  font-weight: 500;
  background: var(--at-white-color);
  border: 1px solid #dbe5f1;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Arrow */
.btn2 span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.btn2:hover {
  background: #174f8f;
  color: #ffffff;
  border-color: #174f8f;
}

.btn2:hover span {
  transform: translateX(5px);
}

.text-primary {
	--bs-text-opacity: 1;
	color: var(--primary-color) !important;

}
.bg-primary {
  background-color: var(--primary-color) !important;

}
.textYellow {
	color: #F59C2B;
}

/*PAGE CSS START*/

.slick-slider {
	margin-bottom: 0px !important;
}
figure {
	margin: 0;
}
.check-icon:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 9px;
	height: 15px;
	border: 3px solid #f59c2b;
	border-left: 0;
	border-top: 0;
	transform: rotate(35deg);
}
.hover-eff:hover {
	transform: scale(1.05);
}
.hover-eff {
	transition: .6s;
	-webkit-transition: .6s;
}
.img-wrap {
  overflow: hidden;
  border-radius: 6px;
}

.custom-shadow {
	box-shadow: 0px 1px 15px 0px #00000026;
	background-color: #fff;
}
.line-break p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}


/* Logo */
.logo {
  max-height: 45px;
}

/* Desktop Menu */
.menu li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}
.menu li a:hover {
  color: #0b6fb8;
}

/* Mobile Toggle */
.menuToggle {
  background: none;
  border: none;
  font-size: 22px;
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  padding: 20px;
  z-index: 9999;
  transition: 0.3s ease;
  box-shadow: 5px 0 15px rgba(0,0,0,0.15);
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar ul {
  list-style: none;
  padding: 40px 0 0;
}

.mobile-sidebar ul li {
  margin-bottom: 15px;
}

.mobile-sidebar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.close-menu {
  background: none;
  border: none;
  font-size: 22px;
}


@media (max-width: 1199px){
   body.active {
  	overflow: hidden;
  }

  body.active:before {
  	content: '';
  	position: fixed;
  	top: 0;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	background: #000;
  	z-index: 8;
  	opacity: .8;
  }
  /*Header Menu Css End*/

}
@media (min-width: 992px) {
  .main-header {
    padding: 0;
  }
}
@media (max-width: 575px){
	body {
		font-size: 15px;
	}
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 22px;
	}
	.p-tb {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.pt {
		padding-top: 50px;
	}
	.pb {
		padding-bottom: 50px;
	}
	.btn {
    padding: 8px 25px;
    font-size: 15px;
}

}















/*New Layout Style*/



.hero-slide{
  min-height: 70vh;
  background-size: cover;
  background-position: center;
}
.client-logo-wrapper{
  bottom: 32px;
  z-index: 9;
}

/* Logo center */
.client-slider .slick-slide{
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.client-slider img{
  max-height: 45px;
  width: auto;
}

/* Custom Arrow (Exact Image Style) */
.arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6b6b;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
}

.arrow-left{ left: -12px; }
.arrow-right{ right: -12px; }

.feature-wrap{
  background: #eef7ff;
	border-radius: 0 150px 0px 150px;
	padding: 32px;
}

/* Transparent background layer */
.feature-wrap::before{
  content: "";
    position: absolute;
    inset: 0;
    background: rgba(223, 241, 255, 0.6);
    border-radius: 150px 150px 150px 0;
    z-index: 0;
    margin: 25px;
}

/* Content upar rahe */
.feature-wrap > *{
  position: relative;
  z-index: 1;
}



/*About Section*/
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  left: -15%;
  bottom: 10%;
  width: 60%;
  height: 80px;
  background: rgba(30, 136, 229, 0.08);
  transform: skewX(-12deg);
}

.about-section::after {
  content: "";
  position: absolute;
  right: -20%;
  top: 20%;
  width: 50%;
  height: 80px;
  background: rgba(67, 160, 71, 0.08);
  transform: skewX(-12deg);
}
.image-frame {
  border: 6px solid var(--primary-color);
  border-radius: 24px;
  padding: 10px;
  display: inline-block;
}

.image-frame img {
  border-radius: 18px;
}


/* FAQ Section */
.faqs .accordion-button{
  background: #fff;
  box-shadow: none;
  padding: 1.5rem 1rem;
  position: relative;
}

/* Remove Bootstrap default arrow */
.faqs .accordion-button::after{
  display: none;
}

/* Number */
.faqs .faq-number{
  font-size: 32px;
  font-weight: 600;
  color: #9e9e9e;
  min-width: 48px;
}

/* Plus / Close icon */
.faqs .accordion-button::before{
  content: "+";
  position: absolute;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.faqs .accordion-button:not(.collapsed)::before{
  content: "×";
  background: #000;
  color: #fff;
}

/* Body text */
.faqs .accordion-body{
  color: #555;
  padding-top: 0;
}
.site-footer{
  background: #eef7ff;
    border-radius: 200px 200px 0 0;
}

.footer-wrap{
  max-width: 800px;
}

/* Social icons */
.social-icon{
  width: 42px;
  height: 42px;
  background: #6bbf00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.social-icon:hover{
  background: #5aa600;
  color: #fff;
}
.inner-hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e6e6ff 100%);
}

.inner-hero .image-frame {
  border: 4px solid #1d4ed8; /* blue border like image */
  border-radius: 12px;
  display: inline-block;
  overflow: hidden;
}
.hero-section {
  position: relative;
  width: 100%;
  padding-bottom:125px !important;
/*  height: 600px;*/
  background: linear-gradient(120deg, #eaf6f9 0%, #f3ecff 100%);
  overflow: hidden;
}


/* Top curved shape */
.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -10%;
  width: 120%;
  height: 400px;
  border-radius: 0 0 60% 60%;
  opacity: 0.95;
}

/* Bottom soft wave */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -15%;
  width: 130%;
  height: 250px;
  background: #ffffff;
  border-radius: 60% 60% 0 0;
  opacity: 0.85;
}



/* Image card wrapper */
.atla-about .card-image {
  background: #fff;
  padding: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-top: 15px;
}

/* Image */
.atla-about .card-image img {
  width: 100%;
  object-fit: cover;
}

/* Right column stack */
.atla-about .right-stack {
  display: flex;
  flex-direction: column;
  gap: 50px;
}




.product-img {
  width: 140px;
  flex-shrink: 0;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*testimonial*/

.at-testimonial .testimonial-container{
 max-width: 990px;
}
.border-box::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(49% + 20px);
    height: calc(100% + 60px);
    border: 10px solid #CFD4DE;
    border-radius: 30px;
    pointer-events: none;
    padding: 10px;
}
.at-testimonial .image-frame {
    position: relative;
    display: inline-block;
    border: 8px solid #d1e0ed; /* outer border color */
    border-radius: 0 50px 50px 0; /* top-left, top-right, bottom-right, bottom-left */
    overflow: hidden;
    width: 300px; /* adjust size */
    height: 300px; /* adjust size */
}

.at-testimonial .image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-testimonial .custom-border {
    position: relative;
    display: inline-block;
    width: 300px;  /* image size adjust kare */
    height: 300px; 
}

.at-testimonial .custom-border::before,
.at-testimonial .custom-border::after {
    content: "";
    position: absolute;
    border: 8px solid #d1e0ed; /* border color */
}

.at-testimonial .custom-border::before {
        top: 0;
    right: 0;
    width: 72%;
    height: 100%;
    border-radius: 0 60px 60px 0;
    border-left: none;
}

.at-testimonial .custom-border::after {
    border: none !important;
}

.at-testimonial .custom-border img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 60px 60px 0;
}
.at-testimonial .at-arrow {
    position: relative;
    display: inline-block;
    margin: 20px 10px 0;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.at-testimonial .at-arrow:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.at-testimonial .slick-prev {
    left: 10px;
    bottom: 0;
}

.at-testimonial .slick-next {
    left: 0px;
    bottom: 0;
}

.at-testimonial .slick-arrow {
    z-index: 2;
}
.at-testimonial .slick-slider .slick-prev,
.at-testimonial .slick-slider .slick-next {
    display: none !important;
}
.at-testimonial .arrow_div{
  position: absolute;
    bottom: 15px;
}
.at-testimonial .slick-next:before, .at-testimonial .slick-prev:before{
  display: none !important;
}
.at-testimonial .at-arrow:active,
.at-testimonial .at-arrow:focus {
    background-color: var(--at-white-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
    outline: none;
    color: var(--primary-color);
}
.at-testimonial .at-arrow {
    opacity: 0.4;
    pointer-events: none;
}

.at-testimonial .at-arrow.active {
    opacity: 1;
    pointer-events: auto;
}
.bg-whatsapp {
  background-color: #25D3661A !important;
}
.call-fa-icon {
  color: var(--primary-color) !important;  
}
.blog-news-section .card {
  transition: all 0.3s ease;
}

.blog-news-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Section Divider */
.section-divider {
  display: block;
  width: 40px;
  height: 4px;
  margin: 0 auto 12px;
  background-color: #f3a6b3;
  border-radius: 10px;
}

/* Blog Cards */
.blog-news-section .card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-news-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Featured Blog */
.blog-featured-img {
  height: 260px;
  object-fit: cover;
}

.blog-featured .card-body {
  padding: 1.5rem;
}

/* Right Side Blogs */
.blog-thumb {
  width: 90px;
  height: 90px;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}

/* Read More */
.read-more {
  color: #dc3545;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Slick spacing fix */
.blog-slider .slick-slide {
  padding: 0 10px;
}
.at-testimonial {
    overflow: hidden;
}
/* Responsive */
@media (max-width: 991px) {
  .atla-about .card-image img {
    height: auto;
  }
  .at-testimonial .testimonial-container {
    max-width: 889px;
            /*padding: 0 30px;*/
}
.hero-slide{
  min-height: 50vh;
}
}
/* Responsive fix */
@media (max-width: 768px){
  .feature-wrap,
  .feature-inner{
    border-radius: 32px;
  }
  .product-img {
        width: 100%;
    }
    .at-testimonial .arrow_div {
    bottom: -42px;
    right: 37%;
}
.hero-slide{
  min-height: 450px;
}

.container {
    max-width: 720px;
}
}
