/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@font-face {
    font-family: "Righteous";
    src: url("../fonts/Poppins-Black.ttf");
    src: url("../fonts/Roboto.ttf");
}


/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);





.contactsec {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    gap: 10px; /* Space between the text and button */
    margin-left: 20px; /* Moves the entire section a bit to the right */
}

.need {
    margin: 0; /* Removes any default margin */
}

.contact-link {
    font-size: 15px;
    padding: 10px 20px;
    padding-bottom: 20px;
    color: white;
    background-color: #6610f2;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}


.contact-section {
    padding: 0; /* Removes any internal space */
    margin: 0;  /* Ensures no extra space from outside */
}

.content-wrapper {
    padding: 0;
    margin: 0;
}

.contact-section h2,
.contact-section p,
.contact-button,
.separator {
    margin: 0; /* Removes any extra spacing between elements */
    padding: 0;
}

  
/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/
/* Zoom effect */

.text-center {
    text-align: center; /* Center text inside the div */
}

.readmore-button {
    display: inline-block; /* Make the link behave like a button */
    padding: 10px 20px; /* Add some padding */
    background-color: #007bff; /* Button background color */
    color: white; /* Text color */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    margin-top: 40px; /* Increased space above the button */
}

.readmore-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.zoom-effect {
    transform: scale(1.1); /* Adjust zoom scale as needed */
    transition: transform 0.3s ease;
}

/* Popup form styling */

.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}


.icons {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
}

.icon-link {
    color: white; /* Set icon color to white */
    margin-left: 25px; /* Add space between icons */
    font-size: 25px; /* Increase icon size (adjust as needed) */
}

.icon-link:hover {
    color: #ddd; /* Change color on hover */
}


.contact-link {
    color: #007bff; /* Bootstrap's primary blue */
    text-decoration: none; /* Remove underline */
}

.contact-link:hover {
    text-decoration: underline; /* Underline on hover */
}



.popup-form {
    display: none; /* Initially hidden */
    position: fixed; 
    z-index: 1000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.popup-content {
    background-color: #fff;
    margin: 15% auto; 
    padding: 20px; 
    border-radius: 8px; 
    width: 300px; /* Adjust the width as needed */
    position: relative;
}

.close-button {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    cursor: pointer; 
    font-size: 20px;
}


  

.form-heading {
    text-align: center;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%; 
    padding: 10px; 
    border-radius: 5px; 
    border: 1px solid #ddd;
}

.submit-button {
    background-color: #6610f2; 
    color: #fff; 
    padding: 10px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    width: 100%; 
    font-size: 18px;
}

.submit-button:hover {
    background-color: #5a0dcf; /* Darker shade on hover */
}

.callback-form {
    height:360px;
    background-color: white; /* Background color for the form */
    padding: 20px; /* Padding inside the form */
    border-radius: 8px; /* Rounded corners for the form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
    display: flex; /* Flexbox for centering items */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally */
    max-width: 400px; /* Maximum width of the form container */
    margin: 0 auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);  /* Center the form container */
}

.form-group {
    width: 100%; /* Ensure form-group takes full width */
}

.form-heading {
   
    color: #6610f2; /* Heading color */
    margin-bottom: 15px; /* Space below the heading */
}



.form-control {
    border: 1px solid #6610f2; /* Border color for the input fields */
    border-radius: 20px; /* Rounded corners for the input fields */
    padding: 10px; /* Padding for the input fields */
    margin-bottom: 15px; /* Space between input fields */
}

.submit-button {
    background-color: #6610f2; /* Background color for the submit button */
    color: white; /* Text color for the submit button */
    border: none; /* No border for the button */
    border-radius: 20px; /* Rounded corners for the button */
    padding: 10px 20px; /* Padding for the button */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.submit-button:hover {
    background-color: #5e09d3; /* Darker shade on hover */
}

.readmore-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: white; /* Button background color */
    color: black; /* Button text color */
    border-radius: 25px; /* Rounded edges */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.readmore-button:hover {
    background-color: blue; /* Background color on hover */
    color: white; /* Text color on hover */
}



.client_logo img {
    max-width: 100%;
    height: auto;
    padding: 10px;
    object-fit: contain;
 }
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {}
 a,
 a:hover,
 a:focus,
 a:active {
     text-decoration: none;
     outline: none;
 }
 
 a,
 a:active,
 a:focus {
     color: #333;
     text-decoration: none;
     transition-timing-function: ease-in-out;
     -ms-transition-timing-function: ease-in-out;
     -moz-transition-timing-function: ease-in-out;
     -webkit-transition-timing-function: ease-in-out;
     -o-transition-timing-function: ease-in-out;
     transition-duration: .2s;
     -ms-transition-duration: .2s;
     -moz-transition-duration: .2s;
     -webkit-transition-duration: .2s;
     -o-transition-duration: .2s;
 }
 
 ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }
 img {
max-width: 100%;
height: auto;
}
span, a, a:hover {
display: inline-block;
text-decoration: none;
color: inherit;
}
.section-head {
margin-bottom: 60px;
}
.section-head h4 {
position: relative;
padding:0;
color:#6610f2;
line-height: 1;
letter-spacing:0.3px;
font-size: 34px;
font-weight: 700;  
text-align:center;
text-transform:none;
margin-bottom:30px;
}
.section-head h4:before {
content: '';
width: 60px;
height: 3px;
background: #6610f2;
position: absolute;
left: 0px;
bottom: -10px;
right:0;  
margin:0 auto;
}
.section-head h4 span {
font-weight: 700;
padding-bottom: 5px;
color:#2f2f2f
}
p.service_text{
color:#cccccc !important;
font-size:16px;
line-height:28px;
text-align:center;    
}
.section-head p, p.awesome_line{
color:#818181;
font-size:16px;
line-height:28px;
text-align:center;  
}

.extra-text {
font-size:34px;
font-weight: 700;
color:#2f2f2f;
margin-bottom: 25px;
position:relative;
text-transform: none;
}
.extra-text::before {
content: '';
width: 60px;
height: 3px;
background: #6610f2;
position: absolute;
left: 0px;
bottom: -10px;
right: 0;
margin: 0 auto;
}
.extra-text span {
font-weight: 700;
color:#6610f2;
}
.item {
background: #fff;
text-align: center;
padding: 30px 25px;
-webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
border-radius: 20px;
border:5px solid rgba(0, 0, 0, 0.07);
margin-bottom: 30px;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item:hover{
background:#6610f2;
box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item:hover .item, .item:hover span.icon{
background:#fff;
border-radius:10px;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item:hover h6, .item:hover p{
color:#fff;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}
.item .icon {
font-size: 40px;
margin-bottom:25px;
color: #6610f2;
width: 90px;
height: 90px;
line-height: 96px;
border-radius: 50px;
}
.item .feature_box_col_one {
    background: #ffffff; /* White */
    color: #6610f2; /* Text color */
}

.item .feature_box_col_two {
    background: #ffffff; /* White */
    color: #6610f2;/* Text color */
}

.item .feature_box_col_three {
    background: #ffffff; /* White */
    color: #6610f2; /* Text color */
}

.item .feature_box_col_four {
    background: #ffffff; /* White */
    color: #6610f2; /* Text color */
}

.item .feature_box_col_five {
    background: #ffffff; /* White */
    color: #6610f2; /* Text color */
}

.item .feature_box_col_six {
    background: #ffffff; /* White */
    color: #6610f2; /* Text color */
}

.item p{
font-size:15px;
line-height:26px;
}
.item h6 {
margin-bottom:20px;
color:#2f2f2f;
}
.mission p {
margin-bottom: 10px;
font-size: 15px;
line-height: 28px;
font-weight: 500;
}
.mission i {
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
background: #6610f2;
border-radius: 50%;
color: #fff;
font-size: 25px;
}
.mission .small-text {
margin-left: 10px;
font-size: 13px;
color: #666;
}
.skills {
padding-top:0px;
}
.skills .prog-item {
margin-bottom: 25px;
}
.skills .prog-item:last-child {
margin-bottom: 0;
}
.skills .prog-item p {
font-weight: 500;
font-size: 15px;
margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
width: 100%;
height: 10px;
background: #e0e0e0;
border-radius:20px;
position: relative;
}
.skills .prog-item .skills-progress span {
position: absolute;
left: 0;
top: 0;
height: 100%;
background: #6610f2;
width: 10%;
border-radius: 10px;
-webkit-transition: all 1s;
transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
content: attr(data-value);
position: absolute;
top: -5px;
right: 0;
font-size: 10px;
font-weight:600;    
color: #fff;
background:rgba(0, 0, 0, 0.9);
padding: 3px 7px;
border-radius: 30px;
} 



.contact-section {
    background-color: black;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 25px;
  }

  .contact-section h2 {
    color: white;
    font-size: 2rem;
    margin: 0;
    font-weight: normal;
  }

  .contact-section p {
    color: white;
    font-size: 16px;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
    text-align: center;
  }

  .contact-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: #6610f2;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
  }

  .contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 16, 242, 0.3);
  }

  /* .footers {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    text-align: center;
  } */

  .footers p {
    padding:30px;
    text-align: center;
    color: black;
    margin: 0;
    font-size: 0.9rem;
  }

  /* Dotted line separator */
  .separator {
    border: none;
    border-top: 1px dotted #ccc;
    margin: 0;
    width: 100%;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }


* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #666666;
    font-size: 16px;
    font-family: Poppins;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 16px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none!important;
    opacity: 1
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin-top: 0px; /* Sets a 20px margin on the top */
    margin-right: 0px; /* Removes right margin */
    margin-bottom: 20px; /* Sets a 20px margin on the bottom */
    margin-left: 0px; /* Removes left margin */
    font-weight: 300; /* Sets the font weight to light (300) */
    font-size: 15px; /* Sets the font size to 15px */
    line-height: 24px; /* Sets the line height to 24px */
}


a {
    color: #222222;
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

 :focus {
    outline: 0;
}

.layout_padding {
    padding-top: 50px;
    padding-bottom: 0px;
}

.padding_0 {
    padding: 0px;
}

.header_bg {
    width: 100%;
    float: left;
    background: #2d4fbc !important;
    padding-bottom: 20px !important;
}

.header_section {
    width: 100%;
    float: left;
    background-image: url(../images/banner-bg.png);
    height: auto;
    background-size: cover;
    padding-bottom: 0px;
    /* background-size: 110%;
    background-repeat: no-repeat; */
}

.bg-dark {
    background-color: transparent !important;
}

/* .navbar-dark .navbar-toggler-icon {
    background-image: url(../images/toggle-icon.png);
} */

.navbar-toggler-icon {
    width: 55px;
}

.navbar-dark .navbar-toggler {
    border-color: transparent !important;
}

.navbar-toggler {
    padding: .25rem 0px;
}

.navbar {
    padding: 30px 0px 10px 0px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #000;
    font-size: 18px;
    padding-bottom: 0px;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #000;
}

.logo {
    width: 70%;
    float: left;
}
.single-line {
    white-space: nowrap; /* Ensures the text stays in a single line */
  }
  
.banner_taital {
    
    width: 100%;
    float: left;
    font-size: 55px;
    color: #060303;
    font-weight: bold;
    line-height: 70px;
    
}

.banner_text {
    width: 90%;
    float: left;
    font-size: 16px;
    color: #383838;
    margin-left: 0px;
}

.read_bt {
    width: 170px;
    float: left;
    margin-top: 10px;
}

.read_bt a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    background-color: #070414;
    border-bottom: 7px solid #393bb9;
    border-radius: 30px;
    padding: 9px 0px;
}

.read_bt a:hover {
    background-color: #8480f9;
    border-bottom: 7px solid #393bb9;
}

#my_slider .carousel-control-prev:hover,
#my_slider .carousel-control-next:hover,
#my_slider .carousel-control-prev:focus,
#my_slider .carousel-control-next:focus {
    background: #055eff;
    color: #fff;
}

#my_slider a.carousel-control-prev {
    position: absolute;
    left: 850px;
    top: 100%;
}

#my_slider a.carousel-control-next {
    position: absolute;
    right: 350px;
    top: 100%;
    background-color: #055eff;
}

#my_slider .carousel-control-prev,
#my_slider .carousel-control-next {
    width: 65px;
    height: 65px;
    background: #000006;
    opacity: 1;
    font-size: 30px;
    color: #ffffff;
}

.about_section {
    width: 100%;
    float: left;
    position: relative;
    padding-bottom: 30px;
}

.image_2 {
    width: 90%;
    float: left;
}

.about_section::after {
    content: '';
    position: absolute;
    height: 466px;
    width: 655px;
    margin: 0 auto;
    justify-content: center;
    left: 0px;
    right: initial;
    display: block;
    background-image: url(../images/about-bg.png);
    top: 37px;
    z-index: -1;
    background-size: 100%;
}

.about_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #383838;
}

.about_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #0c0900;
    margin-left: 0px;
}

.us_text {
    background-color: #ececeb;
    border-radius: 100%;
    color: #5114b2;
    padding: 5px 10px;
}

.read_bt_1 {
    width: 170px;
    float: left;
    margin-top: 40px;
}

.read_bt_1 a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    background-color: #393bb9;
    border-radius: 30px;
    padding: 9px 0px;
}

.read_bt_1 a:hover {
    background-color: #8480f9;
}
.banner_section {
    padding-bottom: 0px; /* Adjust this value as needed */
}

.col-md-6{
    padding-bottom:15px ;
}

.services_section {
    width: 100%;
    float: left;
    background-image: url(../images/services-bg.png);
    background-size: cover;
    height: auto;
    padding-bottom: 30px;
    margin-top: 0px;
    background-repeat: no-repeat;
}

.service_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #ffffff;
    text-align: center;
}

.service_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #dcdada;
    margin-left: 0px;
    text-align: center;
}

.our_text {
    background-color: #ececeb;
    border-radius: 100%;
    color: #5114b2;
    padding: 17px 10px;
}

.services_section_2 {
    width: 100%;
    float: left;
    margin-top: 0px;
}

.icon_1 {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 20px;
 
}

.design_text {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 24px;
    color: #ffffff;
    padding-top: 10px;
}

.lorem_text {
    width: 80%;
    text-align: center;
    color: #d5d5d5;
    font-size: 16px;
    margin: 0 auto;
}

.icon_3 {
    width: 100%;
    float: left;
    text-align: center;
    padding-top: 220px;
}

.read_bt_2 {
    width: 170px;
    margin: 0 auto;
    text-align: center;
}

.read_bt_2 a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #000;
    text-align: center;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 9px 0px;
    margin-top: 70px;
}

.read_bt_2 a:hover {
    background-color: #8480f9;
}

.blog_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}

.blog_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #181717;
    text-align: center;
    margin-top: 15px;
}

.blog_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #2d2d2d;
    margin-left: 0px;
    text-align: center;
    font-weight: 400;
}

.box_main {
    width: 100%;
    float: left;
    background-color: #ffffff;
    height: auto;
    border-radius: 5px;
    padding-bottom: 20px;
}

.box_main:hover {
    box-shadow: 0px 1px 10px 1px #888888;
}

.student_bg {
    width: 100%;
    float: left;
    background-image: url(../images/img-3.png);
    height: auto;
    background-size: cover;
    position: relative;
    min-height: 287px;
    background-repeat: no-repeat;
}

.image_15 {
    width: 20%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: -40px;
    background: #334bbb;
    display: block;
    border-radius: 100%;
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    padding: 13px 20px;
    left: 0;
    right: 0;
}

.hannery_text {
    width: 100%;
    float: left;
    font-size: 20px;
    color: #1d1f1e;
    font-weight: bold;
    padding-left: 20px;
    padding-top: 15px;
}

.fact_text {
    width: 100%;
    float: left;
    font-size: 15px;
    color: #282828;
    margin: 0px;
    padding: 0px 11px;
    padding-left: 20px;
}

.newsletter_section {
    width: 100%;
    float: left;
    background-color: #2e4dbc;
    height: auto;
    padding: 40px 0px;
}

.newsletter_text {
    width: 100%;
    float: left;
    color: #ffffff;
    font-size: 40px;
}

.tempor_text {
    width: 100%;
    float: left;
    color: #ffffff;
    font-size: 16px;
    margin-left: 0px;
    margin-top: 0px;
}

.mail_bt_main {
    width: 100%;
    float: left;
    padding-top: 50px;
}

.mail_text {
    width: 60%;
    float: left;
    color: #000;
    font-size: 16px;
    background-color: #ffffff;
    padding: 10px 15px;
    border: 0px;
    height: auto;
    border-radius: 50px;
}

.subscribe_bt {
    width: 150px;
    float: left;
    color: #acabab;
    font-size: 16px;
    background-color: #040202;
    padding: 10px 15px;
    text-align: center;
    border-radius: 50px;
    margin-left: 30px;
}

.subscribe_bt a {
    color: #acabab;
}

.client_section {
    width: 100%;
    float: left;
    background-color: #f5f5f5;
    height: auto;
    padding-bottom: 30px;
}

.tes_text {
    background-color: #ececeb;
    border-radius: 100%;
    color: #5114b2;
    padding: 15px 10px;
}

.client_section_2 {
    width: 100%;
    float: left;
}

.client_box {
    width: 85%;
    float: left;
    background-color: #402fb7;
    padding: 30px 30px 10px 30px;
    border-radius: 20px;
}

.client_box.active {
    background-color: #ffffff;
}

.client_box:hover {
    background-color: #ffffff;
}

.client_box:hover .magna_text {
    color: #000;
}

.client_box:hover .consectetur_text {
    color: #000;
}

.client_box:hover .ipsum_text {
    color: #000;
}

.left_main {
    width: 30%;
    float: left;
}

.right_main {
    width: 70%;
    float: left;
}

.magna_text {
    width: 100%;
    float: left;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

.magna_text.active {
    color: #000;
}

.consectetur_text {
    width: 100%;
    float: left;
    font-size: 20px;
    color: #ffffff;
    margin: 0px;
}

.consectetur_text.active {
    color: #000;
}

.quote_icon {
    width: 30px;
    float: left;
    padding-top: 10px;
    background-image: url(../images/quote-icon1.png);
    height: 100px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: 15px;
}

.quote_icon.active {
    background-image: url(../images/quote-icon.png);
}

.client_box .quote_icon:hover {
    background-image: url(../images/quote-icon.png);
}

.ipsum_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    margin-left: 0px;
}

.ipsum_text.active {
    color: #000;
}

.carousel-indicators li {
    width: 50px;
    height: 15px;
    border-radius: 40px;
    background-color: #0c0900;
}

.carousel-indicators .active {
    background-color: #402fb7;
}

.carousel-indicators {
    bottom: -80px;
}

.contact_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}

.touch_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #1d1c1c;
    font-weight: bold;
    text-align: center;
}

.contact_section_2 {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.email_text {
    width: 100%;
    float: left;
    padding: 20px 20px 20px 20px;
}

.email-bt {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #2a2a2c;
    margin-bottom: 20px;
    padding: 8px 15px;
    border: 1px solid #909090;
}

.massage-bt {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #2a2a2c;
    margin-bottom: 20px;
    padding: 40px 15px 8px 15px;
    border: 1px solid #909090;
    height: 120px;
}

.send_btn {
    width: 170px;
    float: left;
}

.send_btn a {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    background-color: #4c35bc;
    padding: 10px;
    border-radius: 30px;
}

.send_btn a:hover {
    color: #ffffff;
    background-color: #000;
}

.footer_section {
    width: 100%;
    float: left;
    background-color: #070517;
    height: auto;
    padding-bottom: 40px;
}

.address_main {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-image: url(../images/footer-bg.png);
    height: auto;
    display: flex;
    padding: 15px 0px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.address_text {
    width: 100%;
    font-size: 16px;
    color: #ffffff;
}

.address_text a {
    color: #ffffff;
}

.padding_left_15 {
    padding-left: 15px;
}

.footer_section_2 {
    width: 100%;
    float: left;
    padding-top: 40px;
}

.link_text {
    width: 100%;
    float: left;
    font-size: 20px;
    color: #fcfcfc;
    font-weight: bold;
    text-transform: uppercase;
}

.footer_menu {
    width: 100%;
    float: left;
}

.footer_menu ul {
    margin: 0px;
    padding: 0px;
}

.footer_menu li {
    font-size: 16px;
    color: #878585;
}

.footer_menu li a {
    color: #878585;
}

.footer_menu li a:hover {
    color: #fcfcfc;
}

.footer_text {
    width: 55%;
    float: left;
    font-size: 16px;
    color: #878585;
    margin-left: 0px;
    margin-top: 0px;
}

.footer_text_1 {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #878585;
    margin-left: 0px;
    margin-top: 0px;
}

.social_icon {
    width: 100%;
    float: left;
}

.social_icon ul {
    margin: 0px;
    padding: 0px;
}

.social_icon li {
    float: left;
    padding-right: 10px;
    padding-top: 10px;
}

.copyright_section {
    width: 100%;
    float: left;
    background-color: #ffffff;
    height: auto;
}

.copyright_text {
    width: 100%;
    float: left;
    color: #0b0b0c;
    text-align: center;
    font-size: 16px;
    margin-left: 0px;
}

.copyright_text a {
    color: #0b0b0c;
}

.copyright_text a:hover {
    color: #402fb7;
}

.margin_top_90 {
    margin-top: 90px;
}


/* Zoom in & out animation */

.zoom_in {
    transition: transform 0.3s ease; 
    cursor: pointer;
    /* Smooth transition */
}

.zoom_in:hover {
    transform: scale(1.1); /* Scale up on hover */
}



