:root {
    --primary: #01428e;
    --secondary: #3498db;
    /* --accent: #E74C3C; */
    --accent: linear-gradient(135deg, #30bcff, #1e44f3);
    --light: #ecf0f1;
    --dark: #1a252f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
/* :root {
  --primary: #0d6efd;
  --secondary: #ff5722;
} */

header {
    background: #ffffff;
    color: #000;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 25px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff8c50, #e22440);
    color: #fff !important;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(rgb(44 62 80 / 51%), rgb(44 62 80 / 65%)),
        url(../images/hero-banner.png) no-repeat center center / cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-2 {
    background:
        linear-gradient(rgb(44 62 80 / 51%), rgb(44 62 80 / 65%)),
        url(../images/hi_hero2.png) no-repeat center center / cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--light);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    /* background-color: var(--primary); */
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.product-content p {
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.benefit-item {
    flex: 1 1 300px;
    margin: 20px;
    text-align: center;
}

.benefit-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Integration Section */
.integration {
    padding: 100px 0;
    background: var(--light);
}

.integration-content {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 40px;
}

.integration-text {
    flex: 1 1 500px;
}

.integration-text h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.integration-image {
    flex: 1 1 400px;
    height: auto;
    /* background-color: var(--primary); */
    border-radius: 10px;
}
.integration-image img {
    border-radius: 14px;
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
}

/* blog */
.blog{
    padding: 100px 0 ;
    /* background-color: #fff; */
}
/* faq */
.faq-section{
    padding: 100px 0 ;
    background: #fff;
}
.accordion-item h2{
margin: 0;
}
.accordion-button:not(.collapsed)::after{
    content: '';
    background: transparent !important;
}
/* CTA Section */
.cta {
    padding: 100px 0;
    background:
        linear-gradient(rgb(21 48 66 / 8%), rgb(43 53 60 / 80%)),
        url(../images/footer_bg.png) no-repeat center center / cover;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-big {
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition:
        background-color 0.3s,
        transform 0.3s;
    display: inline-block;
}

.cta-big:hover {
    background: #0f60c5;
    color: white;
    transform: scale(1.05);
}
.pb-20 {
    padding-top: 20px;
}
/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    /* margin-bottom: 40px; */
        text-align: center;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #3498db;
    padding-top: 0 !important;
    
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
        display: flex;
    justify-content: flex-end;
   
}
.copyright p{
    position: absolute;
    transform: translate(-132%, 10px);
}
ul.footer-list {

    text-align: justify;
    color: #fff;
}
ul.footer-list li a{
color: #d2d1d1;
    font-size: 14px;
}

.footer-socials {
    display: flex;
     justify-content: center; 
    gap: 20px;
    margin-bottom: 30px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* request demo styles */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    display: none;
    width: 440px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    z-index: 1000;
    background: transparent;
    border: none;
}
.popup h4 {
    margin-top: 0;
}

.register-form input {
    flex: 1;
    padding: 8px;
    /* margin-bottom: 10px; */
    border: 1px solid #ccc;
       border-radius: 20px;
}

.register-form button {
    width: 30%;
    padding: 10px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 14px;
    margin: auto;
    font-size: 16px;
}

.error {
    color: red;
    margin-bottom: 10px;
}

.success {
    color: green;
    margin-top: 10px;
    text-align: center;
}

#overLayBackgroundReg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

#overLayBackgroundReg img {
    width: 50px;
}
h3

 {
    padding:20px 0px 10px 0px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.send-img-login {
    width: 74px;
    height: 73px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: #d6edff;
    border-radius: 50%;
    position: absolute;
    top: -32px;
    right: 48px;
    z-index: 999999;
    box-shadow: rgb(228 231 234) 0px 0px 3px 0px;
}

.send-img-login img {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #094893;
    padding-bottom: 20px;
    position: relative;
    z-index: 999999;
}

.demo-submit {
    width: auto;
    padding: 10px 50px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.demo-field {
    width: 100%;
    display: flex;
    margin: auto;
    align-items: center;
        padding: 10px 0px;
}
.demo-field .fa{
      width: 30px;
    color: #094893;
}
/* blog */
.section-padding {
    padding: 60px 0 60px;
}
.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 20px;
}

.main-sidebar .single-sidebar-widget {
    padding: 26px 20px !important;
    background-color: #d9dbdcb3;
    box-shadow: 0 5px 40px 10px #eaeaef;
    margin-bottom: 16px;
    border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
    position: relative;
    padding-bottom: 15px;
}
.main-sidebar .single-sidebar-widget .wid-title h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: blue;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
    margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}
.recent-thumb img {
    border-radius: 6px;
    width: 100px;
}

.recent-content a{
       color:#1d64b9;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
    margin-bottom: 8px;
        padding-left: 0px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
    font-weight: 700;
    font-size: 14px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.product-image img {
    width: 100%;
}
form#registerForm {
    width: 90%;
    margin: auto;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.fa-whatsapp{
	margin-top:14px;
}

/* case studies */

.case-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.case-card {
   
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 0 calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
}

.case-image {
    position: relative;
}

.case-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.case-image img:hover {
    transform: scale(1.05);
}

.case-image .date {
      position: absolute;
    bottom: 6px;
    right: 5px;
    background-color: rgb(0 0 0 / 63%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}

.case-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-content h2 {
   font-size: 20px;
    margin-bottom: 10px;
    color: #0b1c6c;
}

.case-content p {
    flex-grow: 1;
    color: #bbb;
    margin-bottom: 20px;
}

.case-content a {
    align-self: flex-start;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.case-content a:hover {
    background-color: #0056b3;
        color: #fff;
}


/* case-detailed */
.rich-editor-text {
    align-items: flex-start;
    display: inline-block;
}
.rich-editor-text p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 6px 0;
}
.case-study-name {
    font-size: 22px;
    color: #c94518;
    font-weight: 500;
}
.cs-blog-detail .cs-tags {
    display: block;
    margin: 40px 0 20px;
    border-top: 1px solid #e6e6e6;
    padding: 20px 0px;
}

.cs-blog-detail .tags

 {
    display: inline-block;
    margin: 0 -4px 0 0;
    vertical-align: middle;
    width: 100%;
}
.cs-blog-detail .cs-tags .tags span {
    color: #333;
    display: inline-block;
    font-size: 18px;
    margin: 0 10px 5px 0;
}
.cs-blog-detail .cs-tags .tags ul

 {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.cs-tags ul li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 0 6px;
}
.cs-tags .tags ul li a {
    background-color: #f5f5f5;
    border-radius: 0px;
    color: #042862;
    padding: 2px 18px 3px;
    box-shadow: rgb(221, 221, 221) 0px 0px 4px 0px;
    margin-bottom: 10px;
}
.cs-tags ul li a {
    display: block;
    font-size: 12px;
    margin: 0 8px 0 0;
}

.rich-editor-text h6{
    color:#01054c;
        font-weight: 600;
}

b, strong {
    font-weight: 600 !important;
}
.keypoints li{
    line-height: 30px;
        list-style: disc;
}
.post-option {
    display: flex
;
    justify-content: end;
}
.post-option .post-date {
    padding: 0 30px;
}
.post-date a {
    color: #999;
    font-size: 14px;
}
.post-option .post-date i {
    font-size: 12px;
}
.cs-main-post img{
    width:100%;
    border-radius: 10px;
}


/* about us section */
.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #195eb1;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:34px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ea1f5c;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover{
  background-color: #001e57;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 80px 0 70px;
}

.about-section .sec-title{
  margin-bottom: 28px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.about-section .image-column .image-1{
  position: relative;
}

.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #ffffff;
}

.footer-column.sub-text {
    width: 44%;
    margin: auto;
    text-align: center;
}

ul.footer-links {
    display: flex;
    gap: 50px;
    margin-left: 0;
    justify-content: center;
}
/* Responsive styles */
@media (max-width: 768px) {
    .slick-dots li button:before {
        font-size: 12px !important;
    }
    .hamburger {
        display: flex;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background: #f5f5f5c2;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        padding: 4px 30px;
                margin-left: 18px;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        color: #141313;
    }

    nav ul li a:hover {
        color: var(--secondary);
    }
    .integration-image img {
        width: 100%;
        height: auto;
    }
    .hero {
        height: 78vh;
    }
    .hero-2 {
        height: 78vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .features,
    .products,
    .benefits,
    .integration {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .integration-content {
        flex-wrap: wrap;
    }
    .footer-content {
        gap: 0px;
        margin-bottom: 0px;
        display: flex;
        flex-wrap: wrap;
    }
    .footer-column {
        flex: 1 1 125px;
        margin: 20px;
    }
    footer {
        padding: 10px 0px;
    }
    .logo img {
        height: 48px;
    }
    .integration-text h2 {
        font-size: 28px;
    }
    .cta h2 {
        font-size: 28px;
    }
}




/* slider arrows */
.slick-next:before, .slick-prev:before{
        color: #8a8a8a !important;
}

.slick-next:before, .slick-prev:before{
        color: #8a8a8a !important;
}
.slick-next{
    right: -40px !important;
} .slick-prev{
left: -40px !important;
}