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





@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.ttf') format('truetype'),
        url('/assets/fonts/Poppins-Regular.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Bold.ttf') format('truetype'),
        url('/assets/fonts/Poppins-Bold.woff2') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Light.ttf') format('truetype'),
        url('/assets/fonts/Poppins-Light.woff2') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Medium.ttf') format('truetype'),
        url('/assets/fonts/Poppins-Medium.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('/assets/fonts/Poppins-SemiBold.woff2') format('truetype');
    font-weight: 600;
    font-style: normal;
}


body {
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6;
    overflow-x: hidden;
}
.logo-header{
    width: 180px;
}



/* Header styles */

.header {
    background-color: #2c3e50;
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0rem;
}

/* Main navigation */
.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Canvas menu styles */
.canvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #2c3e50;
    z-index: 1002;
    transition: right 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
}

.canvas-menu.open {
    right: 0;
}

.canvas-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.canvas-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.canvas-nav ul {
    list-style: none;
}

.canvas-nav li {
    margin-bottom: 1.5rem;
}

.canvas-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.canvas-nav a:hover {
    color: #3498db;
}

/* Canvas overlay */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.canvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 20px;
}



/* header end css */
.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.carousel-caption .btn {
    margin-right: 15px;
}

.overlay {
    background: rgba(0, 0, 0, 0.336);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

/* 
services section start */


.css-templetet {

    margin: 4% auto;
}

.service-item {

    box-shadow: 0px 0px 2px 0px;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.service-item:hover {
    box-shadow: 0px 7px 10px 0px #3498db;
    transition: all 0.2s ease-in-out;
}

.fas {
    font-size: 50px;
    color: #3498db;
}

.cta-banner{

    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.cta-buttons {
   display: flex;
    justify-content: end;
    align-items: center;
    gap:30px    
}

.cta-btn {
    background-color: #3498db;
    color: white;
    width: 160px;
    height: 45px;
 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease-in-out;
}





.h2-business{
    font-weight: bold;
    text-align: left;

}

.knew-us{
  padding: 4% 0;
}

.knew-us h2{
    font-weight: bold;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin: 9%;
  }

  .section-h{
    color: #fff;
    padding-bottom:25px;

  }
  
  .section-heading h6 {
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .section-heading h4 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
  }
  
  /* Tabs Menu */
  .menu {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .menu div {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    font-weight: 500;
  }
  
  .menu .gradient-border {
    border: 2px solid transparent;
    background-image: linear-gradient(#00c9ff, #92fe9d), linear-gradient(to right, #00c9ff, #92fe9d);
    background-origin: border-box;
    /* background-clip: content-box, border-box; */
}
  
  .menu .active {
    background-color: #00c9ff;
    color: #ff511a;
  }
  
  /* Tab Content */
  .nacc {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nacc li {
    display: none;
  }
  
  .nacc li.active {
    display: block;
  }
  
  .main-list,
  .list-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
  
  .main-list {
    font-weight: bold;
    background-color: #f1f1f1;
    padding: 12px;
  }
  
  .list-item {
    padding: 20px 12px;
  }
  
  .last-item {
    border-bottom: none;
  }
  
  .item-title {
    font-weight: 600;
  }
  
  /* Right Content Box */
  .right-content {
    background: #f9f9f9;
    padding: 0px 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
  }
  
  .right-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .right-content p {
    font-size: 15px;
    color: #555;
  }
  
  /* Button Style */
  .green-button a {
    display: inline-block;
    background: #43ba7f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .green-button a:hover {
    background: #218838;
  }

  .connect-btn{
    display: flex;
    justify-content: center;
  }
  



  /* contect us section css */


.calculator {
    margin: 4% 0% 0% 0;
  padding: 60px 0px 0px 0px;
  background-image: url('../images/calculator-bg.jpg');
    background-size: cover;
    background-position: center;
}

.calculator .left-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.calculator .section-heading h6 {
  font-size: 16px;
  color: #ff6600;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.calculator .section-heading h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.calculator form label {
  font-weight: 600;
  margin-bottom: 5px;
  color:#fff;
}

.calculator input,
.calculator select {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.calculator input:focus,
.calculator select:focus {
  border-color: #ff6600;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}



.orange-button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.orange-button:hover {
  background-color: #e05500;
}






/* testimonial css start  */


.testimonials {
    /* padding: 60px 0; */
    background-color: #f8f9fa;
    text-align: center;
  }
  
  .testimonials .section-heading h6 {
    color: #ff6600;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .testimonials .section-heading h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
  }

  .item{
    display: flex;
    justify-content: space-between;
  }

.left-text{
    text-align: left;
    width: 71%;
}

.testimonials-bg{
position: relative;
z-index: 5;
padding-left:40px;
border-radius: 10px;
box-shadow: 0px 0px 5px 0px;
}

.owl-dots {
    display: none;
}


.fa-quote-left {
    padding-top: 50px;
}

.fa-quote-left-alt:before, .fa-quote-left:before {
    font-size: 70px;
    color: #3498db; /* Change this to any desired color */
}



/* testimonial css end  */

/* cliennt section start */

.partners{
margin-top:4%;
background-color: #212741;
padding: 80px 0px 80px 0px;

}


/* footer css start  */



.footer-bg{
    background-color: #181d30;
    color: #fff;
}

.footer-bg h5 {
color: #fff;

}
.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.footer-bg p{
color: #fff;

}
.footer a:hover {
    color: #007bff;
}

.footer h5 {
    margin-bottom: 15px;
}
