body{
  overflow-x: hidden;
  background-color: #EEF5FF;
  /* background-color: #eae8ff; */
  /* background-color: #E0ECDE; */
}
.full-width-div {
  width: 100vw; /* Ensures the div takes full viewport width */
  height: 64px;
  background-color: #2b3949; /* Optional: background color for visibility */
  margin: 0; /* Removes any default margin */
  padding: 0; /* Removes any default padding */
}
.left-section{
  width: 40vw;
  position: relative;
  line-height: 64px;
  float: left;
  left: 130px;
}
svg{
  position: relative;
  top: -1px;
  font-weight: bolder;
  right: 4px;
  
}
.working-hours{
  color: #f5f5f5;
  font-size: 16px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
}
.timing{
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.right-section{
width: 700px !important;
position: relative;
float: right;
right: 40px;
line-height: 64px;
color: white;
}
.divider-container {
display: flex;
align-items: center;
justify-content: center;
height: 64px;
}
.divider-container .divider {
margin: 0 10px;
color: #fff; /* White color for text */
font-weight: bold;
}
.email{
color: #f5f5f5;
font-size: 16px;
font-weight: bold;
font-family: "Inter", sans-serif;

}
.number{
height: auto;
color: #f5f5f5;
font-size: 16px;
font-weight: bold;
font-family: "Inter", sans-serif;
}
.num{
margin-left: 8px;
}
.header-icon{
  margin-left: 10px;
  color: white;
}
.header-icon:hover{
  color: rgba(255, 255, 255, 0.838);
}

@media (max-width: 769px){
  .full-width-div{
      display: none;
  }

}

/* Navbar styling for desktop view */
.navbar {
  height: 99px;
  padding: 0;
  background-color: #D9EAFD; /* Adjust based on your design */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: for a shadow effect */
  
}

.navbar-brand img {
  height: 120px;
  object-fit: contain;
  margin-top: 6px;
  margin-left: 3px;
}

.navbar-nav {
  margin: 0 auto; /* Centering the nav items */
  margin-left: 140px;
}

.btn-custom {
  margin-left: auto; /* Pushes the button to the right */
}

/* Hide the toggler for desktop */
.navbar-toggler {
  display: none;
}
.nav-link{
  color: black !important;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  margin-right: 15px;
}
.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  color: black !important;          /* Ensure text color is black */
  font-size: 16px;                  /* Set font size */
  font-family: "Inter", sans-serif; /* Use "Inter" font */
  
  width: auto;            /* Adjust width automatically based on content */
  min-width: 100%;        /* Ensure it covers the full width of the dropdown trigger */
  white-space: nowrap;    /* Prevent text from wrapping into multiple lines */
}
/* Hide the dropdown by default */
#servicesDropdown {
  display: none;
}

/* Show the dropdown when the 'show' class is added */
#servicesDropdown.show {
  display: block;
  font-weight: bold;
  
}



/* Get Started Now Button Styling */
#getStartedButton {
  width: 320px !important; /* Width of the button */
  height: 44px; /* Height of the button */
  background-color: #2B3949; /* Background color */
  color: #FFFFFF; /* Text color */
  font-family: "Inter", sans-serif;
  font-size: 15px; /* Font size */
  border: none; /* Remove default border */
  border-radius: 5px; /* Optional: rounded corners */
  display: flex; /* Aligns the content properly */
  align-items: center; /* Centers text vertically */
  justify-content: center; /* Centers text horizontally */
  padding: 10px 20px; /* Optional: padding inside the button */
  text-transform: uppercase; /* Optional: uppercase text */
  cursor: pointer; /* Change cursor to pointer on hover */
  margin-right: 35px;
}

#getStartedButton svg {
  margin-left: 8px; /* Spacing between text and icon */
  position: relative;
  top: -4px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar {
    height: auto; /* Allow height to adjust for mobile */
    position: absolute ;
    top: 0px !important;
  }

  .navbar-brand img {
    height: auto; /* Adjust logo height for mobile */
  }

  .navbar-nav {
    margin: 0; /* Centering for mobile view */
  }

  .btn-custom {
    margin: 20px 0; /* Adjust spacing for mobile */
    display: block;
  }

  .navbar-toggler {
    display: block; /* Show the toggler for mobile */
    margin-right: 10px !important;
  }
  #getStartedButton{
    display: none;
  }
}

    /* Mobile view adjustments */
    @media (max-width: 991.98px) {
      .social-icons {
        margin-top: 20px; /* Space between contact info and icons */
        display: flex;
        justify-content: flex-start; /* Align icons to the left */
        width: 100%;
      }
  
      .social-icons a {
        color: #000; /* Icon color */
        text-decoration: none; /* Remove underline */
        font-size: 24px; /* Adjust icon size */
        margin-right: 10px; /* Space between icons */
      }
  
      .social-icons a:last-child {
        margin-right: 0; /* Remove right margin from the last icon */
      }
  
      .navbar-brand img {
        height: 60px; /* Adjust this value as needed */
      }
  
      .navbar-collapse {
        position: fixed;
        top: 70px; /* Adjust this value based on the height of your logo and any potential padding/margin */
        left: 0;
        width: 100%;
        height: calc(100% - 70px); /* Adjust this value based on the height of your logo */
        background-color: white; /* Optional: set a background color */
        z-index: 1000; /* Ensure it’s on top */
        overflow-y: auto; /* Enable scrolling if content overflows */
        padding: 20px; /* Optional: add padding inside the collapse */
      }
  
      .navbar-nav {
        display: block; /* Make the navbar items stack vertically */
        margin: 0; /* Remove default margins */
      }
  
      .nav-item {
        margin-bottom: 15px; /* Add space between items */
      }
  
      .contact-info {
        margin-top: 20px; /* Space between menu items and contact info */
      }
  
      .contact-info p {
        margin: 0;
        padding: 0;
      }
  
      .contact-info a {
        display: block;
        margin-bottom: 10px; /* Space between contact items */
        color: #000; /* Adjust color as needed */
        text-decoration: none; /* Remove underline */
      }
  
      .contact-info a:hover {
        text-decoration: underline; /* Underline on hover */
      }
    }
  
    /* Hide contact info and social icons on desktop view */
    @media (min-width: 992px) {
      .contact-info,
      .social-icons {
        display: none;
      }
    }

.full-width-bg {
  /* background-color: #EEF5FF; */
  /* background-color: #D4E2F0; */
  padding: 20px;
}
.img-section{
  width: 446px;
  height: 558px;
  position: relative;
  left: 170px;
  margin-top: 65px;
}
@media (max-width: 768px) {
.img-section{
  width: 446px;
  height: 558px;
  position: relative;
  left: 140px !important;
  top: 50px;
  padding-right: 0px !important;
}
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the start */
  padding: 20px;
  position: relative;
  left: 80px;
  
}
.heading-title {
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  color: #2B3949;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  font-size: 32px; /* Increased font size for emphasis */
  margin-bottom: 20px; /* Space between title and content */
  margin-top: 40px !important;
  text-align: left; /* Align text to the left */
  position: relative; /* Needed for text effect */
}
.heading-title h1 {
  color: #2B3949; /* Default color for browsers that don't support gradients */
  background: linear-gradient(to right, #FEBE29, #F7B731);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Standard syntax */
}
.main-heading {
  color: #2B3949;
  line-height: 80px;
  height: 164px;
  font-family: "Outfit", sans-serif;
  font-size: 72px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the start */
  width: 100%;
  margin-bottom: 20px; /* Space between heading and description */
  text-align: left; /* Ensure text is aligned to the start */
  padding: 20px; /* Add padding to ensure proper alignment */
  position: relative;
  left: -25px;
  margin-top: 150px;
}
.description {
  height: 56px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-align: left; /* Align text to the start */
  margin-bottom: 20px; /* Space between description and lists */
  width: 100%; /* Ensure description spans full width */
  margin-top: 80px;
}
ul {
  font-family: "Inter", sans-serif;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px; /* Space between lists and button */
  width: 100%; /* Ensure lists span full width */
}
.checkmark{
  margin-bottom: 10px;
}
.checkmark::before {
  content: '\2713'; /* Checkmark icon */
  color: #2B3949;
  font-size: 20px;
  margin-right: 10px;
  
}
.btn-custom {
  background-color: #2B3949;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin-top: 8px;
  border-radius: 5px !important;
  margin-left: 0px;
}
.btn-custom:hover {
  background-color: #1e2b35; /* Darker shade on hover */
}
.heading-about {
  font-weight: bold;
  color: #2B3949;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  font-size: 32px; /* Increased font size for emphasis */
  margin-bottom: 20px; /* Space between title and content */
  margin-top: -10px !important;
  text-align: left; /* Align text to the left */
  position: relative; /* Needed for text effect */
}
.heading-about h1 {
  color: #2B3949; /* Default color for browsers that don't support gradients */
  background: linear-gradient(to right, #FEBE29, #F7B731);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Standard syntax */
}

@media (min-width: 375px) and (max-width: 450px) {
  .col-md-6.image-section {
    padding-right: 0; /* Remove right padding */
    padding-left: 0;  /* Remove left padding */
    width: 70% !important; /* Ensure full width */
  }

  .img-section {
    width: 366px; /* Set the width to 366px */
    height: 444px; /* Set the height to 444px */
    margin: 0; /* Remove all default margins */
    margin-left: -180px !important; /* Move the image to the left */
    padding: 0; /* Remove all paddings */
    display: block; /* Ensure it's treated as a block element */
  }
  .container-fluid.full-width-bg .row {
    width: 100%; /* Ensure the row takes up the full width */
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default paddings */
  }
  
  .col-md-6.text-section, .col-md-6.image-section {
    padding-left: 0;  /* Remove any left padding */
    padding-right: 0; /* Remove any right padding */
  }
  
  .img-section {
    width: 366px; /* Set specific width for the image */
    height: 444px; /* Set specific height for the image */
    margin: 0 auto; /* Center the image horizontally */
  }
  .checkmark-ul{
    margin-top: 37px !important;
  }

}

@media (max-width: 768px) {
.col-md-6.image-section {
  padding-right: 0; /* Remove right padding */
  padding-left: 0;  /* Remove left padding */
  width: 70%; /* Ensure full width */
}

.img-section {
  width: 366px; /* Set the width to 366px */
  height: 444px; /* Set the height to 444px */
  margin: 0; /* Remove all default margins */
  margin-left: -140px !important; /* Move the image to the left */
  padding: 0; /* Remove all paddings */
  display: block; /* Ensure it's treated as a block element */
}


.container-fluid.full-width-bg .row {
  display: flex;
  justify-content: center; /* Centers the entire content of the row */
}

.col-md-6.text-section {
  width: 95% !important;
  position: relative;
  left: 50%; /* Start from the center of the container */
  transform: translateX(-50%); /* Move it back by half of its width to center */
  padding-left: 0;  /* Remove left padding */
  padding-right: 0; /* Remove right padding */
}
.heading-title{
  position: relative;
  top: 40px;
}
.main-heading {
  padding: 0; /* Removes all padding */
  left: 0; /* Resets any left positioning */
  font-size: 45px; /* Sets the font size */
  line-height: normal; /* Resets line height to normal */
  position: relative;
  top: 30px;
}

.description {
  padding: 0px; /* Ensure no extra spacing on the sides */
  margin-bottom: 17px;
}
}


@media (max-width: 768px) {
.container-fluid.justify-content-center {
  display: flex;
  justify-content: center; /* Center content horizontally */
  padding: 0; /* Remove padding if needed */
  margin: 0; /* Remove margin if needed */
}

.marquee-container {
  display: flex;
  justify-content: center; /* Center the marquee horizontally */
  align-items: center; /* Center the marquee vertically if needed */
  overflow: hidden; /* Hide overflowing content */
  width: 100vw !important; /* Full viewport width */
  padding: 0; /* Remove padding */
  margin: 0 !important; /* Remove margin */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.marquee {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping of images */
  white-space: nowrap; /* Prevent images from wrapping to the next line */
  animation: marquee 10s linear infinite; /* Adjust animation duration */
}

.marquee img {
  height: auto; /* Maintain aspect ratio */
  width: auto; /* Allow width to adjust based on height */
  margin-top: 0px !important; /* Add spacing between images */
}

/* Animation for marquee effect */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
}

.marquee-container {
  height: 142px;
  overflow: hidden;
  position: relative;
  background-color: #2b3949;  /* Background color */
  width: calc(100% - 120px); /* Full width minus padding on both sides (60px each) */
  margin: 0 60px; /* Add space on both sides */
  border-radius: 6px;
  margin-bottom: 60px;
}

.marquee {
  display: flex;
  width: 100% !important;
  height: 42px;
  position: absolute;
  animation: marquee 30s linear infinite;
  
}

.marquee img {
  height: 100%;
  margin-right: 50px; /* Space between logos */
  margin-top: 50px;
}

@keyframes marquee {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}


.left-side {
  display: flex;
  flex-direction: column;
}

.left-side img {
  width: 100%;
  height: auto;
}

.left-image {
  width: 770px;
  height: 843.98px;
}

.under-left-image {
  width: 746px;
  height: 843.98px;
  margin-top: 20px; /* Adjust spacing as needed */
}

.right-side {
  width: 550px;
  height: 843.98px;
  overflow: auto; /* Add scroll if content overflows */
  display: flex;
  flex-direction: column;
}
.content-heading {
position: relative;
padding-left: 40px; /* Adjust padding to make space for the circle */
display: flex;
align-items: center; /* Vertically center the text and circle */
}

.circle-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 30px; /* Set the width of the circle */
height: 30px; /* Set the height of the circle */
border-radius: 50%; /* Make the element circular */
background-color: white; /* Circle background color */
color: black; /* Icon color */
font-size: 14px; /* Icon size */
margin-right: 10px; /* Space between circle and heading text */
position: absolute;
left: 0; /* Position the circle to the left of the heading */
}

.btn-about {
  border: 2px solid #000;
  background-color: transparent;
  padding: 10px 20px;
  font-size: 18px;
  margin-bottom: 20px;
  align-self: start;
}

.about-btn:hover{
background-color: #192029;
color: white !important;
}
.heading-about{
  font-family: "Inter", sans-serif;
}
.content-heading {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  width: 100%;
}
@media (max-width: 768px) {
.content-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  width: 100%;
  text-align: start !important;
}
}

.content-description {
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.btn-more {
  align-self: start;
  margin-top: auto; /* Push to the bottom */
}

.container-custom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.left-image {
  max-width: 100%;
  height: auto;
}
.content-heading-1 {
  font-family: "Outfit", sans-serif;
}
.content-heading {
  margin-bottom: 0.5rem;
}
.content-description {
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}
.btn-about {
  margin-bottom: 1rem;
  background-color: #171e27a3; /* Transparent background color */
  color: #fff;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px; /* Space between title and content */
  border: none;
 border-radius: 5px !important;
}
.btn-about:hover{
  color: #f6e5e5;
}
.btn-more {
  margin-top: 1rem;
  background-color: #2B3949; /* Background color */
  color: #FFFFFF; /* Text color */
  font-size: 16px; /* Font size */
  border: none; /* Remove default border */
  border-radius: 5px; /* Optional: rounded corners */
  display: flex; /* Aligns the content properly */
  align-items: center; /* Centers text vertically */
  justify-content: center; /* Centers text horizontally */
  padding: 10px 20px; /* Optional: padding inside the button */
  text-transform: uppercase; /* Optional: uppercase text */
  cursor: pointer; /* Change cursor to pointer on hover */
  margin-right: 35px;
}

/* Mobile View */
@media (max-width: 768px) {
.heading-about{
  position: relative;
  top: 10px;
  margin-bottom: 50px;
}
.left-image {
    width: 100%;
    height: auto; /* Ensure the image scales correctly */
}
.content-heading-1{
font-size: 20px; /* Adjust font size for mobile */
position: relative;
left: 0px !important;
font-weight: bold;
margin-left: 0px !important;
font-family: "Outfit", sans-serif !important;
}
.content-heading {
  font-size: 20px; /* Adjust font size for mobile */
  padding-left: 0; /* Remove padding */
  text-align: start !important; /* Ensure text is aligned to the start */
  margin-bottom: 10px;
  position: relative;
  left: 0px !important; /* Set left position to 0 */
}

.circle-icon {
    display: none; /* Hide circle icon on mobile */
}

.content-description {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: start; /* Center-align text */
    font-family: "Inter", sans-serif;
}

.btn-about {
    font-size: 16px; /* Adjust font size */
    padding: 10px 20px;
    margin-bottom: 20px;
    border: none; /* Remove border */
    background-color: #171e27a3; /* Transparent background */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
}

.btn-about:hover {
    color: #f6e5e5;
}

.btn-more {
    font-size: 16px; /* Adjust font size */
    padding: 10px 20px;
    margin-top: 1rem;
    background-color: #2B3949; /* Background color */
    color: #FFFFFF; /* Text color */
    border: none; /* Remove border */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 35px;
}

.container-custom {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}
}


.full-width-blue {
height: 199px;
background-color: #2B3949;
}

.box {
height: 150px;
width: 16.50%;
color: #FFFFFF;
margin: 0 10px; /* Spacing between boxes */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border: none;
border-radius: 5px;
margin-top: 20px !important;
}
.box .subheading {
font-size: 16px;
color: #f8f9fa;
margin-bottom: 5px;
font-family: "Inter", sans-serif;
}
.box .count {
  font-family: "Outfit", sans-serif;
font-size: 40px;
font-weight: bold;
}
.box-container {
display: flex;
justify-content: center;
flex-wrap: nowrap;
margin-top: 50px !important;
}

/* Mobile View */
@media (max-width: 768px) {
.container-fluid .row {
  width: 100%; /* Full width */
  padding: 0 !important; /* Remove padding */
  margin: 0 !important; /* Remove margin */
  box-sizing: border-box; /* Ensure padding and borders are included in the width */
}

.full-width-blue {
  width: 100% !important; /* Ensure full width of the container */
  margin: 0 !important; /* Remove any default margins */
  padding: 0 !important; /* Remove any padding */
  box-sizing: border-box; /* Include padding and borders in the element's total width */
  display: flex;
  justify-content: center;
  align-items: center; /* Center content vertically */
}

.box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns layout, evenly spaced */
  grid-gap: 20px; /* Space between boxes */
  justify-content: center; /* Center the grid within the container */
  width: 100% !important; /* Ensure the box container is full width */
  padding: 0 10px; /* Optional padding for container */
  box-sizing: border-box; /* Include padding in width */
}

.box {
  width: 100% !important; /* Full width of the grid cell */
  height: auto; /* Adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  border-radius: 5px;
  position: relative;
  left: -6px !important; /* Remove any left positioning */
}
#box2{
  margin: 0px !important;
}
#box4{
  margin: 0px !important;
}

.box .subheading {
  font-size: 16px;
  color: #f8f9fa;
  margin-bottom: 8px; /* Adjust spacing */
}

.box .count {
  font-size: 40px;
  font-weight: bold;
}
}



.section-container {
  padding-left: 80px; /* Equal space on the left */
  padding-right: 60px; /* Equal space on the right */
}
.services-list {
  color: #fff;
  font-weight: bold;
  counter-reset: section; /* Initialize the counter */
}

.services-list li {
  margin-bottom: 20px;
  list-style: none; /* Remove default bullet points */
  position: relative; /* Required for the absolute positioning of the counter */
  padding-left: 30px; /* Space for the numbers */
}

.services-list li::before {
  content: counter(section, decimal-leading-zero); /* Add leading zero */
  counter-increment: section; /* Increment the counter */
  color: #f6c344; /* Number color */
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 20px;
}

/* Container styling */
.section-container {
  background-color: transparent; /* Change as needed */
}

/* Left section styling */
.services-list {
  list-style-type: none;
  padding: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px; /* Adjust spacing between items as needed */
}

.services-list li hr {
  border: 0;
  border-top: 1px solid #fff; /* Adjust color if needed */
  margin: 0;
}


.name {
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 15px;
  font-family: "Outfit", sans-serif;
}
.right-arrow{
  margin-left: 5px;
}

.text-white {
  color: #fff;
  font-family: "Inter", sans-serif;
}

.heading-services {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #2B3949;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  font-size: 32px; /* Increased font size for emphasis */
  margin-bottom: 20px; /* Space between title and content */
  margin-top: 0px !important;
  text-align: left; /* Align text to the left */
  position: relative; /* Needed for text effect */
}

.heading-services h1 {
color: #2B3949; /* Default color for browsers that don't support gradients */
background: linear-gradient(to right, #FEBE29, #F7B731);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text; /* Standard syntax */
}

/* Mobile view adjustments */
@media (max-width: 768px) {

.heading-services-1 {
  width: 100%; /* Ensure full-width */
  text-align: left; /* Align text to the left */
  padding-left: 0 !important; /* Remove any left padding */
  margin-left: 0 !important; /* Remove any left margin */
  position: relative;
  left: 0 !important; /* Reset any left position */
  font-size: 40px !important;
}




.heading {
  font-size: 40px; /* Adjust font size for mobile view */
  font-weight: bold !important;
  margin-bottom: 20px !important; /* Adjust bottom margin for mobile view */
  margin-top: 60px; /* Optionally adjust top margin for mobile view */
  text-align: left; /* Align text to the left */
}

.heading h1 {
  line-height: 1.2; /* Adjust line height for better spacing */
}
.heading h1 {
  width: 100% !important;
    font-size: 34px; /* Optionally adjust font size for mobile view */
    text-align: left; /* Align text to the left */
    position: relative;
    left: 0px;
}
}

.right-services-section {
  max-width: 518.04px; /* Set max-width based on the image size */
  margin-left: auto; /* Align the right section to the right */
}
.right-services-section img {
  width: 518.04px; /* Exact width of the image */
  height: 450.03px; /* Exact height of the image */
  object-fit: cover; /* Ensure the image covers the area without distortion */
}




/* Flexbox adjustments for mobile */
@media (max-width: 768px) {
  .row {
      display: flex;
      flex-direction: column-reverse; /* Right section on top */
  }
  
  .col-md-7,
  .col-md-4 {
      width: 100%; /* Full width for mobile */
  }
  .right-services-section {
      width: 100%; /* Ensure the right section takes full width */
      max-width: none; /* Remove max-width constraint */
      margin-top: 5px; /* Remove margins on mobile */
      margin-left: 5px; /* Remove margins on mobile */
     position: relative;
     bottom: 50px;
     
  }
  .heading {
    font-weight: bold !important;
    color: #2B3949;
    width: 261.55px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px; /* Space between title and content */
    position: relative;
    left: -px;
    margin-top: 50px;
   
  }
  
  .right-services-section img {
      width: 100%; /* Make the image responsive */
      height: auto; /* Adjust height to maintain aspect ratio */
  }
  
  .services-list li {
      padding-left: 15px; /* Adjust padding as needed */
  }
  
  .section-container {
      padding-left: 10px; /* Remove left padding on mobile */
      padding-right: 20px; /* Remove right padding on mobile */
  }
}


.text-center{
  font-size: 40px;
  font-weight: bold;
  color: #2B3949;
}
.project-img {
  height: 579px;
  width: 636px;
  border-radius: 6px;
}

.img-left-margin {
 position: relative;
 left: 50px !important;
}

.img-right-margin {
  position: relative;
 right: 50px !important;
}

.heading-project {
  font-weight: bold;
  color: #2B3949;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  font-size: 32px; /* Increased font size for emphasis */
  margin-bottom: 20px; /* Space between title and content */
  margin-top: 0px !important;
  text-align: center !important; /* Align text to the center */
  position: relative; /* Needed for text effect */
}

.heading-project h1 {
color: #2B3949; /* Default color for browsers that don't support gradients */
background: linear-gradient(to right, #FEBE29, #F7B731);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text; /* Standard syntax */
}

@media (max-width: 767.98px) {
  .text-center{
      font-size: 28px;
      font-weight: bold;
      color: #2B3949;
  }
  .project-img {
    height: auto;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }

  .img-left-margin, 
  .img-right-margin {
      position: relative;
      left: 0px !important;
      right: 0px !important;
  }
  .row-second{
      position: relative;
      top: -25px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
.container-fluid .row {
  width: 100%; /* Full width */
  padding: 0 !important; /* Remove padding */
  margin: 0; /* Remove margin if needed */
  box-sizing: border-box; /* Ensure padding and borders are included in the width */
}

.section-container {
  padding-left: 20px; /* Adjust padding for mobile view */
  padding-right: 20px; /* Adjust padding for mobile view */
  background-color: transparent; /* Change as needed */
}

.full-width-blue {
  width: 100% !important; /* Force full width */
  margin: 0; /* Remove any default margins */
  padding: 0; /* Remove any padding */
  box-sizing: border-box; /* Include padding and borders in the element's total width */
  display: flex;
  justify-content: center;
  align-items: center; /* Center content vertically */
  height: auto !important;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns layout, evenly spaced */
  grid-gap: 20px; /* Space between boxes */
  justify-content: center; /* Center the grid within the container */
  margin-top: 0px !important;
}

.box {
  width: 100%; /* Full width of the grid cell */
  height: auto; /* Adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  border-radius: 5px;
  position: relative;
  left: 0; /* Reset left positioning */
 
}

.box .subheading {
  font-size: 16px;
  color: #f8f9fa;
  margin-bottom: 8px; /* Adjust spacing */
}

.box .count {
  font-size: 40px;
  font-weight: bold;
}

.services-list {
  color: #2B3949;
  font-weight: bold;
  counter-reset: section; /* Initialize the counter */
  list-style: none;
  padding: 0;
}

.services-list li {
  margin-bottom: 20px;
  position: relative; /* Required for the absolute positioning of the counter */
  padding-left: 30px; /* Space for the numbers */
  display: flex;
  align-items: center;
}

.services-list li::before {
  content: counter(section, decimal-leading-zero); /* Add leading zero */
  counter-increment: section; /* Increment the counter */
  color: #f6c344; /* Number color */
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 20px;
}

.services-list li hr {
  border: 0;
  border-top: 1px solid #fff; /* Adjust color if needed */
  margin: 0;
}

.name {
  font-size: 20px; /* Adjust font size for mobile view */
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 15px;
}

.right-arrow {
  margin-left: 5px;
}

.text-white {
  color: #fff;
}

.heading-services {
  font-weight: bold;
  color: #2B3949;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* Center text on mobile */
  font-size: 24px; /* Adjust font size for mobile view */
  margin-bottom: 20px; /* Space between title and content */
  margin-top: 20px; /* Adjust top margin for mobile view */
  text-align: center; /* Center text on mobile */
  position: relative; /* Needed for text effect */
}

.heading-services h1 {
  font-size: 20px; /* Adjust font size for mobile view */
  line-height: 1.2; /* Adjust line height for better spacing */
}

.right-services-section {
  max-width: 100%; /* Ensure the right section takes full width */
  margin: 0 auto; /* Center align the section */
  text-align: center; /* Center text for consistency */
}

.right-services-section img {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image covers the area without distortion */
}
}



.custom-container {
  padding-left: 100px  !important;
  padding-right: 100px !important;
}

.left-section-work {
  height: auto;
  width: 100%; /* Adjusted width to prevent overflow */
  max-width: 600px; /* Set maximum width to prevent overflow */
  padding-bottom: 2px !important;
  padding-left: 0px !important;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  margin-left: 0px !important;
}

.strategy, .design, .development {
  /* background: linear-gradient(135deg, #f06, #4a90e2); Example gradient */
  background: linear-gradient(135deg, #615efcbe, #0d154bbe);
  height: 201px;
  padding: 20px;
  font-family: "Inter", sans-serif;
  color: #fff; 
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers the content */
  text-align: left;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, background 0.3s ease; /* Smooth transition for hover effects */
}

.strategy:hover, .design:hover, .development:hover {
  transform: scale(1.05); /* Slightly enlarges the div on hover */
  /* background: linear-gradient(135deg, #4a90e2, #f06); Changes gradient on hover */
  background: linear-gradient(135deg, #0d154bbe, #615efcbe);
}

.strategy h3, .design h3, .development h3 {
  margin: 0 0 10px 0; /* 10px gap below the heading */
  font-family: "Outfit", sans-serif;
}

.right-section-work {
  height: 792.15px;
  width: 648px;
}
.heading-work {
  font-weight: bold;
  font-family: "Inter", sans-serif;
  color: #2B3949;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  font-size: 32px; /* Increased font size for emphasis */
  margin-bottom: 5px !important; /* Space between title and content */
  margin-top: 0px !important;
  text-align: center !important; /* Align text to the center */
  position: relative; /* Needed for text effect */
}

.heading-work h1 {
color: #2B3949; /* Default color for browsers that don't support gradients */
background: linear-gradient(to right, #FEBE29, #F7B731);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text; /* Standard syntax */
}

.main-heading-work {
color: #2B3949;
font-family: "Outfit", sans-serif;
height: 164px;
font-size: 40px;
font-weight: bold;
display: flex;
align-items: left;
justify-content: flex-start; /* Align text to the start */
width: 100%;
margin-bottom: 0px; /* Space between heading and description */
text-align: left; /* Ensure text is aligned to the start */
padding: 0px; /* Add padding to ensure proper alignment */
position: relative;
left: 0px;
margin-top: 0px;
}

.right-section-work img {
width: 100%; /* Ensures the image is full width */
height: auto;
border-radius: 8px; /* Optional: If you want rounded corners */
}


/* Mobile View Adjustments */
@media (max-width: 767.98px) {
.custom-container {
  padding-left: 10px !important;
  padding-right: 10px !important; /* Adjusted padding for better centering */
}

.row {
  justify-content: center; /* Center the row content */
  margin: 0 auto; /* Center the row */
}

.left-section-work, .right-section-work {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.strategy, .design, .development {
  width: calc(100% - 20px); /* Adjust width with margin */
  margin: 0 auto; /* Center align boxes */
  background: linear-gradient(135deg, #615efcbe, #0d154bbe); /* Midnight blue to electric blue gradient */
  height: auto; /* Adjust height to fit content */
  padding: 20px; /* Padding inside the boxes */
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers the content */
  text-align: center; /* Center align text inside boxes */
  box-sizing: border-box;
  transition: transform 0.3s ease, background 0.3s ease; /* Smooth transition for hover effects */
  margin-bottom: 20px; /* Space between boxes */
  margin-left:20px;
}

.strategy:hover, .design:hover, .development:hover {
  transform: scale(1.05); /* Slightly enlarges the div on hover */
  background: linear-gradient(135deg,  #0d154bbe, #615efcbe); /* Inverse gradient on hover */
}

.strategy h3, .design h3, .development h3 {
  margin: 0 0 10px 0; /* 10px gap below the heading */
}

.right-section-work img {
  width: 100%; /* Full width for mobile view */
  height: auto; /* Adjust height */
  margin-top: 20px; /* Optional margin */
  margin-bottom: 20px; /* Optional margin */
}

.main-heading-work {
  height: auto;
  color: #2B3949;
  font-size: 28px !important;
  font-weight: bold;
  display: flex;
  text-align: left !important;
  justify-content: left; /* Center text */
  width: 100%;
  margin-bottom: 10px; /* Space between heading and description */
  text-align: center; /* Center text */
  padding: 0px; /* Add padding to ensure proper alignment */
  position: relative;
  margin-top: 0px;
  line-height: normal;
}
}

h2 {
color: #333;
font-family: "Outfit", sans-serif;
text-align: center;
text-transform: uppercase;
font-weight: bold;
position: relative;
margin: 25px 0 50px;
}
/* General card styling */
.card {
background-color: #fff;
border: 1px solid #e0e0e0;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: hidden;
position: relative;
margin-bottom: 1rem;
}
.user-content p {
  font-size: 0.875rem; /* Font size for paragraph */
  color: #555; /* Text color */
  line-height: 1.5; /* Line height for readability */
  font-family: "Inter", sans-serif;
}
.testimonial-author{
  padding: 20px;
  font-weight: 500;
}
.name-dev{
font-size: 1.7rem;
font-family: "Outfit", sans-serif;
}

/* Hide the mobile section on larger screens */
.mobile-section {
display: none;
}

/* Hide the desktop section on smaller screens */
.desktop-section {
display: block;
}

/* Slider specific styling */
.slider {
position: relative;
overflow: hidden;
}

.slider-wrapper {
display: flex;
transition: transform 0.5s ease;
}

.card {
min-width: 100%;
box-sizing: border-box;
}

/* Navigation buttons */
.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color:transparent;
color: #000;
border: none;
padding: 10px;
cursor: pointer;
z-index: 10;
}

.prev {
left: 10px;
}

.next {
right: 10px;
}

/* Styling for the star rating */
.ratings {
margin-top: 10px; /* Space between content and stars */
}

.ratings i {
color: #f1c40f; /* Star color */
font-size: 16px; /* Adjust star size */
animation: pulse 1.5s infinite; /* Apply animation */
}

/* Keyframes for pulse animation */
@keyframes pulse {
0% {
    transform: scale(1);
    opacity: 0.8;
}
50% {
    transform: scale(1.2);
    opacity: 1;
}
100% {
    transform: scale(1);
    opacity: 0.8;
}
}

/* Responsive styling */
@media (min-width: 769px) {
.desktop-section {
    display: block; /* Show desktop section on larger screens */
}
.mobile-section {
    display: none; /* Hide mobile section on larger screens */
}
}

@media (max-width: 768px) {
.desktop-section {
    display: none; /* Hide desktop section on smaller screens */
}
.mobile-section {
    display: block; /* Show mobile section on smaller screens */
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #000;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
}

.footer-container {
background-color: #2B3949; /* Background color of the footer */
color: #fff; /* Text color */
padding: 20px 0; /* Padding for top and bottom */
}

.footer-container .container-fluid {
padding: 0 -10px; /* Adjust padding */
}

.footer-logo {
display: flex;
/* align-items: center; Center the logo vertically */
/* margin-left: 50px !important; Move the logo 10px to the left */
width: 50% !important;
}

.footer-logo img {
max-width: 100% !important; /* Ensure responsiveness */
width: 40%;
height: auto;
position: relative;
left: 30px !important;
}

.footer-divider-vertical {
width: 2px; /* Width of the vertical divider */
background-color: #ccc; /* Light gray color */
height: 40px; /* Initial height, adjust as needed */
margin: 0 15px; /* Space between the logo and the icons */
position: relative;
left: -460px; /* Adjust the position to align properly */
}

.footer-social {
display: flex; /* Use flexbox to align items in a row */
justify-content: center; /* Center the icons horizontally within the row */
align-items: center; /* Center the icons vertically within their container */
/* margin-left: -460px ; */
}

.footer-icon {
color: #ffffff; /* Icon color */
font-size: 20px !important; /* Icon size */
margin: 0 10px; /* Horizontal spacing between icons */
text-decoration: none; /* Remove underline */
border: 1px solid #ffffff81; /* Circle border color */
border-radius: 50%; /* Makes the border circular */
padding: 15px; /* Space inside the border */
display: flex; /* Center the icon vertically and horizontally */
align-items: center; /* Center the icon vertically */
justify-content: center; /* Center the icon horizontally */
width: 50px; /* Set a fixed width */
height: 50px; /* Set a fixed height to ensure the circle */
box-sizing: border-box; /* Include border and padding in width/height calculation */
transition: background-color 0.4s ease, color 0.4s ease;
}

.footer-icon:hover {
color: #ffffff; /* Change icon color on hover */
background-color: #2d4e6c; /* Smooth background color change on hover */
text-decoration: none; /* Ensure no underline on hover */
}


/* Desktop View */
.footer-divider {
height: 1px; /* Height of the divider */
background-color: lightgray !important; /* Divider color */
width: 100% !important; /* Width of the divider */
margin: 0 auto; /* Center the divider with margin */
/* margin-top: -17px !important; */
}




.footer-boxes {
margin-top: 40px;
display: flex;
justify-content: space-between;
max-width: 1440px; /* Adjust as needed for container width */
margin-left: auto;
margin-right: auto;
}

.footer-box {
/* background-color: #3C4D63; Background color for boxes */
padding: 20px;
box-sizing: border-box;
height: 295px; /* Set height */
width: 300px !important; /* Set width */
}

.footer-box:first-child {
margin-left: 80px; /* Left margin for the first box */
}

.footer-box:last-child {
margin-right: 80px; /* Right margin for the last box */
}

.footer-box h4 {
color: #ffffff;
margin-bottom: 20px;
font-family: "outfit", sans-serif;
}

.footer-box p, .footer-box ul, .footer-box li {
color: #cccccc;
font-size: 14px;
font-family: "Inter", sans-serif;
}

.footer-box ul {
list-style: none;
padding-left: 0;
}

.footer-box li a {
color: #cccccc;
text-decoration: none ;
line-height: 35px !important;
}

.footer-box li a:hover {
color: #ffffff;
text-decoration: none;
}




.mobile-footer-divider {
width: 100%; /* Adjust width as needed */
height: 1px; /* Set a more prominent height for desktop view */
background-color: #ffffff; /* Color to match your design */
margin: 30px auto; /* Center the divider with margin */
position: relative;
/* Add any additional styling needed for the desktop view */
color: white;
}


/* Divider Line */
.footer-divider {
height: 1.50px;
background-color: lightgray !important; /* Divider color */
width: 80%; /* Width of the divider */
margin: 20px auto 0; /* Center the divider */
}

.text-centar {
text-align: center;
font-family: "Inter", sans-serif;
}

.text-centar p {
margin: 0; /* Remove default margin from the paragraph */
font-size: 14px; /* Adjust font size as needed */
color: #ffffff; /* Text color */
font-family: "Inter", sans-serif;
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .footer-container {
    background-color: #2B3949; /* Background color of the footer */
    height: auto;
    }

  .row.justify-content-center {
      display: flex; /* Ensure the row uses flexbox */
      flex-direction: column; /* Stack children vertically */
      align-items: center; /* Center align all items horizontally */
      width: 100%; /* Ensure the row takes full width */
      margin: 0; /* Remove margin */
      padding: 0; /* Remove padding */
      position: relative; /* Ensure relative positioning for context */
      top: -20px;
      bottom: 20px;
      margin-left: 0px;
  }

/* Container for the logo image */
.footer-logo {
  width: auto; /* Container adjusts automatically based on content */
  height: auto; /* Container adjusts automatically based on content */
  overflow: visible; /* Allow the image to overflow the container */
  display: flex; /* Flexbox for alignment */
  justify-content: flex-start; /* Align items to the left */
  align-items: center; /* Center items vertically */
}

/* Style for the logo image */
.footer-logo img {
  width: auto; /* Set desired width for the image */
  height: 100px; /* Set desired height for the image */
  object-fit: scale-down;
  transform: scale(1.8);
  position: relative; /* Allow the image to be positioned */
  left: -20px !important; /* Move the image to the left (adjust this value as needed) */
}



  .footer-divider-vertical {
      display: none; /* Hide the vertical divider */
  }

  .footer-social {
      display: flex; /* Use flexbox */
      justify-content: center; /* Center the social icons horizontally */
      align-items: center; /* Center align icons vertically if needed */
      width: 100%; /* Full width to ensure centering */
      padding: 0; /* Remove padding if any */
      margin: 0; /* Remove margin if any */
  }

  .footer-social a {
      margin: 0 10px; /* Space out icons */
  }

  .footer-boxes {
      display: flex; /* Use flexbox for layout */
      flex-direction: column; /* Stack boxes vertically */
      align-items: flex-start; /* Align items to the left */
      width: 100%; /* Full width of the viewport */
      margin: 0; /* Remove margin */
      padding: 0; /* Remove padding */
      box-sizing: border-box; /* Ensure padding and border are included in the width */
  }

  .footer-boxes .col-md-auto {
      flex: 1 0 100%; /* Ensure columns take full width */
      padding-left: 0; /* Remove left padding */
      padding-right: 0; /* Remove right padding */
      box-sizing: border-box; /* Ensure padding and border are included in the width */
  }

 
  .footer-divider {
  margin-top: 10px !important; /* Adjust this value as needed */
}
  

  /* Remove inline styles from HTML */
  .footer-box:nth-of-type(1) {
      position: static; /* Remove any relative positioning */
      margin-left: 0px;
      margin-right: 80px;
      margin-top: 30px;
     
  }
  .footer-box:nth-of-type(2) {
      position: static; /* Remove any relative positioning */
      margin-right: 80px;
  }
  .footer-box:nth-of-type(3) {
      position: static; /* Remove any relative positioning */
      margin-right: 80px;
  }

  .footer-box:nth-of-type(4) {
      position: static; /* Remove any relative positioning */
  }
}