
/* Fonts */
:root {
  --default-font: "poppins",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Rubik",  sans-serif bold;
  --nav-font: ,  sans-serif;
  --paragraph-font-size: 16px;
}




/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffc50a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc50a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #d1d1d1;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc50a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

/* .light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --heading-color: #ffc50a;
  --contrast-color: #0000;
  --default-color: #000;

} */



/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

body.dark-mode {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffc50a;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #ffc50a;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  margin: 10px;
  --default-color: rgba(0, 0, 0, 0.5);
  --heading-color: #ffffff;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px 0;
  transition: all 0.5s;
  box-shadow: rgba(255, 255, 255, 0.9) 0rem 0rem 0.0625rem 0.0625rem inset, rgba(0, 0, 0, 0.05) 0rem 1.25rem 1.6875rem 0rem;
    backdrop-filter: saturate(200%) blur(1.875rem);
  z-index: 997;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #000000;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 25px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(25px);
}
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    font-weight: bold;
    
  }

  .navmenu ul {
    margin: 0;
    color: #000000;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    font-weight: bold;
  }

  .navmenu li {
    position: relative;
    font-weight: bold;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000000;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* styles.css */


.footer {
  color: white;
  background-color: #000;
  font-size: 14px;
  position: relative;
  padding: 20px 0;
  margin: 10px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.footer .footer-top {
  margin: 0 auto;
  padding-top: 10px;
  border-top: 5px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .footer-about,
.footer .footer-links {
  flex: 1;
  min-width: 200px;
  margin: 20px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 60px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  color: white;
  font-family: var(--heading-font);
}

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: white;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffc50a;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .footer-top .row > div {
    margin-bottom: 1rem;
  }
  .footer .footer-about, .footer .footer-links {
    text-align: center;
  }
  .footer .footer-links ul, .footer .social-links {
    justify-content: center;
  }
  .footer .footer-contact, .footer .footer-about h3, .footer .footer-links h4 {
    margin-bottom: 1rem;
  }
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 200px; /* Adjust the size of the image */
  height: 150px; /* Adjust the size of the image */
 
}

@keyframes animate-preloader {
  0% {
    transform: scale(1); /* Initial scale */
    border-radius: 0;
  }

  50% {
    transform: scale(1.5); /* Scale up */
    border-radius: 0;
  }

  100% {
    transform: scale(1); /* Scale back to original */
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover, .whatsapp {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active, .whatsapp {
  visibility: visible;
  opacity: 1;
}

.whatsapp { 
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  width: 50px; 
  height: 50px; 
  background-color: #000000; 
 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: background-color 0.3s ease; 
  z-index: 1000; 
} 
  .whatsapp { 
    left: 60px; /* Position the WhatsApp button to the left of the scroll-to-top button */ }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 67px;
  }
}

/* speciality section css start */

.main-about { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}


.about-title1 { 
  background: url('../img/aboutus.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

/* Basic Styling for Section */
.dual-section {
  background-color: #000;
  display: flex;
  margin: 20px auto;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  border: 1px solid #ffc50a;
  border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
  overflow: hidden;
  height: 500px;
  width: 90%;
  box-shadow: 0px 4px 10px rgba(255, 197, 10, 0.5); /* Light yellow shadow */
}


/* Left Div - Static Content */
.left-div {
  flex: 1;
  padding: 20px;
  background-color: #000000;
  margin-right: 20px;
  width: 400px;
  height: 300px;
  
}

.left-div h2 {
  color: #ffc50a;
}

.left-div p {
  color: #ffffff;
}

/* Right Div - Sliding Content */
.right-div {
  flex: 2;
  padding: 20px;
  margin-top: 10px;
  background-color: #000000;
  color: white;
  position: relative;
  box-shadow: 0px 4px 10px rgba(255, 197, 10, 0.5);
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  width: 100%;
  height: max-content;
}

/* Slider (Holds all the slides) */
.slider1 {
  padding: 10px;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 10px;
  height: 350px;
  border-radius: 1px solid #fefefe;
  opacity: 5;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}



h3 {
  margin-top: 0;
  font-size: 24px;
}

.controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
}




/* Responsive Media Query */
@media (max-width: 768px) {
  .dual-section {
    flex-direction: column;
    overflow: hidden;
    margin: 10px auto;
    min-height: 800px;
  }

  .left-div {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .right-div {
    flex: 1;
    width: 98%;
    overflow: hidden;

  }
}


/* speciality section css end */


/* strategy section */

 

.ds.process-part {
  background-position: 50% 4px;
  
}

.divider-65 {
  margin: auto;

}

.c-mb-20 {
  margin: auto;
}

.c-mb-lg-60 {
  margin: auto;
}

.step-left-part, .step-right-part, .step-center-part {
  text-align: center;
}

.step-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.color-main {
  color: #ffc50a;
  font-size: 5em;
}

.color-main2 {
  color: #ffb300;
  font-size: 5em;
}

.color-main3 {
  color: #ffb300;
  font-size: 5em;
}

.color-main4 {
  color: #ffd700;
  font-size: 5em;
}

.step-text {
  font-family: inherit; /* Ensures consistency with website's default fonts */
  font-size: 1.2rem; /* Adjust for readability */
  line-height: 1.6; /* Add spacing for better readability */
}

.text-right {
  text-align: right;

}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.stat-1 img {
  width: 500px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 300px;
  margin-bottom: 20px;
}
/* Mobile view - adjust the layout */
@media (max-width: 768px) {
  #steps .stat-1 img {
    display: block;
    margin: 0 auto; /* Centers the image */
    width: 100%; /* Adjusts image size for mobile view */
    max-width: 300px; /* Sets a max-width to prevent it from being too large */
  }

  #steps .step-text {
    font-size: 1.2rem; /* Increases the text size */
    line-height: 1.6; /* Improves readability */
    text-align: center; /* Centers the text for better alignment */
    padding: 0 15px; /* Adds padding for better spacing */
  }

  #steps .step-title {
    font-size: 1.5rem; /* Adjusts the title size */
    text-align: center; /* Centers the title */
    margin-bottom: 10px; /* Adds spacing below the title */
  }

  #steps .step-left-part,
  #steps .step-right-part {
    text-align: center; /* Aligns all content to the center */
  }

  .divider-65 {
    margin-top: 20px; /* Reduces excessive spacing for mobile */
  }
}


.white-button {
  margin-top: 2rem;
}

.white-btn {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
}

.white-btn:hover {
  background-color: #ffc50a;
  color: #000;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.5s;

}

.img-wrap {
  margin-top: 2rem;
}

.divider-30 {
  margin-bottom: 30px;
}

.img-wrap img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  .s-pt-100 {
      padding-top: 50px;
      padding-bottom: 65px;
  }

  .step-title {
      font-size: 1.5rem;
  }

  .step-text {
      font-size: 0.875rem;
  }
}



/* strategy section end */

/* -------------------------------------------------------
--------------Terms & Conditions----------------------------
----------------------------------------------------------- */
.info-terms { 
  padding: 20px; 
} 
.info-terms h5 { 
  font-size: 18px; 
  margin-bottom: 10px; 
} 
.info-terms h4 { 
  font-size: 20px; 
  margin-top: 20px; 
  margin-bottom: 15px; 
} 
.info-terms p { 
  margin: 10px 0; 
  font-size: 16px; 
} 
.terms { 
 
  padding: 20px; 
  margin: 10px auto; 
} 
.section.terms h3 { 
  margin-bottom: 15px; 
} 
  .section.terms h5 { 
    font-size: 18px; 
    margin-bottom: 10px; 
    margin-top: 20px; 
  } 
  .section.terms p { 
    margin: 10px 0; 
    font-size: 16px; 
  } /* Responsive Design */ 
  @media only screen and (max-width: 768px) { 
    .info-terms, 
    .section.terms { 
      padding: 15px; 
    } 
    .info-terms h5, 
    .section.terms h5 { 
      font-size: 16px; 
    } 
    .info-terms h4, .section.terms h4 { 
      font-size: 18px; 
    } 
    .info-terms p, .section.terms p { 
      font-size: 14px; 
    } 
  }






/*////////////--------------------------------------------------
# Global Section Titles
-------------------------/////////////////////////////////////*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

/* -----------testimonials-------------------- */
   
/* Basic styling for the testimonial section */
.testimonial-section {
  padding: 40px 20px;
  background: #f9f9f9;
  overflow: hidden;
}

.testimonial-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px; /* Adds spacing between the cards */
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y; /* Enables horizontal swiping */
  
}

.testimonial-card {
  background: white;
  color: #000000;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  flex: 0 0 calc(100% / 2);
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 10px; /* Adds extra spacing around each card */
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for emphasis */
}

.rating {
  color: #f2ba13f5;
  margin: 10px 0;
  font-size: 1.2rem; /* Slightly larger font for better visibility */
}

.google-icon {
  width: 20px;
  margin-right: 5px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots span.active {
  background: #ffc50a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 90%;
  }
}



/* ---------------------------------------------------------------------------------------------------
# UX Page Design 
------------------------------------------------------------------------------------------------------- */

.main-ux { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.ux-title1 { 
  background: url('../img/uixninja.webp') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}
     .page-title1::before {
       content: ''; 
       position: absolute; 
      top: 0;
      left: 0;
       width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
          /* Add a dark overlay for better text readability */ 
      z-index: -1; 
     } 
      .page-title1 h1 {
      font-size: 2.5em;
      margin: 0 0 10px 0;
      font-weight: bold;
      text-align: center;
    } 
      .page-title1 p { 
      font-size: 1.2em; 
      margin: 0 0 20px 0;
    } 
      .section-title1 {
      margin: 50px 0;
      text-align: center;
    }
        .section-title1 h2 { 
        font-size: 2em;
        margin-bottom: 10px;
    }
      .section-title1 p {
      font-size: 1em;
      color: #666; 
    }
    @media (max-width: 768px) {
      .page-title1 {
      padding: 70px 10px; 
    }
      .page-title1 h1 { 
      font-size: 2em;
    }
      .page-title1 p {
       font-size: 1em;
     }
     .section-title1 h2 { 
      font-size: 1.5em; 
    } 
.section-title1 p {
   font-size: 0.9em; 
  }
}

.ux-content {
display: flex;
}


.rowstack {
   display: flex;
   text-align: center;
   justify-content: space-between;
   padding: 20px; 
   animation: fadeInSlideUp 4s ease-out forwards;
  } 
    .column {
      flex: 1;
      margin: 0 10px;
      color: #ffffff;
      padding: 10px;
      background-color: #000000;
      border: 3px solid #ccc;
      border-top-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-sizing: border-box; 
      box-shadow: 0 4px 8px rgba(255, 255, 0, 0.5);
     
    } 
    
    .column:hover {
    animation: scaleUp 0.3s ease-in-out forwards;
    box-shadow: 0 4px 8px #ffb300;

  }
  @keyframes scaleUp {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.02);
    }
  }
  
    
    .column h2 {
      margin-top: 0; 
      animation: fadeInSlideUp 4s ease-out forwards;
    } 
    .column i {
      color: #ffc50a;
      animation: fadeInSlideUp 4s ease-out forwards;
    }

    @media (max-width: 768px) { 
      .rowstack {
         flex-direction: column; 
        } 
        .column {
           margin: 10px 0; 
          } 
          .column p {
             display: block; /* Ensure paragraphs are displayed as blocks */ 
             margin-bottom: 10px; /* Add some spacing between paragraphs */
          }
    }
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  color: #000000;
}
.btn-get-started {
   display: inline-block; 
   background-color: #ffc50a; /* Primary color */
    color: rgb(0, 0, 0);
     padding: 10px 20px;
      font-size: 16px; border: none;
       border-radius: 5px; 
       cursor:pointer; 
        text-align: center; 
       text-decoration: none; 
       transition: background-color 0.3s ease; 
       margin-top: 20px; } 
       .btn-get-started a { 
        color: #000000; 
        text-decoration: none; 
      } 
      

.ux-design {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.ux-design img {
  padding: 10px;
  width: 500px; /* Adjust as needed */
  border-radius: 10px;
  animation: slideInFromRight ease-out forwards;
  animation-duration: 2s;
}
@media (max-width: 768px) {
.ux-design { 
  flex-direction: column; 
  text-align: center; 
} 
.ux-image { 
  width: 90%; /* Expand image to cover more screen space */
  max-width: none;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
} 
.ux-txt { 
  margin-left: 0; 
  padding: 20px; 
  animation: slideInFromLeft ease-out forwards;
  animation-duration: 2s;
} 
}


.ux-design1 {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    
    .ux-design1 img {
     
      width: 500px;
    
      animation: slideInFromRight ease-out forwards;
  animation-duration: 2s;
    }
    
    .ux-txt {
      flex: 1;
      text-align: left;
      margin: 0 20px;
      padding: 20px;
      animation: slideInFromLeft ease-out forwards;
  animation-duration: 2s;
    }
    .ux-txt1 {
      flex: 1;
      text-align: left;
      margin: 0 20px;
      padding: 20px;
      animation: slideInFromLeft ease-out forwards;
  animation-duration: 2s;
    }
    
    .ux-txt li {
      text-align: left;
      list-style-type: disc;
    }

    .ux-card {
      margin: 10px auto;
      display: flex;
      width: 90%;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: #ffc50a;
      border-top-left-radius: 50px;
      border-bottom-right-radius: 50px;
      box-shadow: 0px 4px 10px rgba(255, 197, 10, 0.5); /* Light yellow shadow */
      animation: fadeInSlideUp 4s ease-out forwards;
    }
    .ux-card img {
      flex: 1;
      width: 30%; /* Adjust as needed */
      height: auto; /* Maintain aspect ratio */
    }
    .btn-get-started1 {
      display: inline-block; 
      background-color: #000000; /* Primary color */
        padding: 10px 20px;
         font-size: 16px;
         color: #ffc50a;
          border-radius: 5px; 
          cursor:pointer; 
           text-align: center; 
          text-decoration: none; 
          transition: background-color 0.3s ease; 
          margin-top: 20px; 
        }
          .btn-get-started1:hover { 
            display: inline-block; 
           background-color: #ffffff; 
           padding: 10px 20px;
           color: #000000;
           text-decoration: none;
           font-size: 16px; 
          border-top-left-radius: 10px;
          border-bottom-right-radius: 10px;
          cursor:pointer; 
           text-align: center; 
          text-decoration: none; 
          transition: background-color 0.3s ease; 
      
         } 
    .ux-card h2, h4 {
      color: #000000;
    }
    
    @media (max-width: 768px) {
      .ux-design1 {
        flex-direction: column;
      }
      .ux-design1 img {
        width: 90%; /* Expand image to cover more screen space */
  max-width: none;
  margin-top: 20px;
      }

      .ux-txt {
        margin: 20px 0;
      }
      .ux-card { 
        flex-direction: column; 
        text-align: center; 
      } 
      .ux-card img{
        flex: 1;
        width: 100%; /* Adjust as needed */
        height: 450px;
      }
      .text-container { 
        margin: 20px 0; 
      } 
      .btn-get-started {
         margin-top: 20px; 
        } 
        }

        @media (max-width: 480px) {
          .ux-design1 {
            flex-direction: column;
          }
          .ux-design1 img {
            width: 100%;
          }
    
          .ux-txt {
            margin: 20px 0;
          }
          .ux-card { 
            flex-direction: column; 
            text-align: center; 
          } 
          .ux-card img{
            flex: 1;
            width: 100%; /* Adjust as needed */
            height: 450px;
          }
          .text-container { 
            margin: 20px 0; 
          } 
          .btn-get-started {
             margin-top: 20px; 
            } 
            }

/*-----------------------------------------------------------------
--------Start of Web Devevelopment page css------------------------
------------------------------------------------------------------- */
.main-web { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.web-title1 { 
  background: url('../img/web1.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.web-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.web-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .web-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .web-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .web-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .web-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}
.web-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.web-service h2{
  text-align: center; 
  margin-bottom: 20px; 
}
.webcard {
  background-color: #ffc50a;
  border: 2px solid #ccc;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 4px 10px rgba(255, 197, 10, 0.5);
  animation: fadeInSlideUp 4s ease-out forwards;
}

.webcard i {
  font-size: 3em;
  color: #000000; /* Adjust color as needed */
}

.webcard h2 {
  margin: 10px 0;
  color: #000000;
}

.webcard p {
  margin: 0;
  color: #000000;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .web-cards {
      grid-template-columns: 1fr;
  }
}

.expertise { 
  padding: 20px; 
  background-color: #3a3939; 
} 
.expertise h2 { 
  text-align: center; 
  margin-bottom: 20px; 
} 
.expert-text { 
  display: flex; 
  justify-content: space-between; 
  gap: 20px; 
} 
.webcolumn { 
  flex: 1; 
  padding: 10px; 
  background-color: #3a3939; 
} 
.webcolumn h3 { 
  margin-top: 0; 
} 
ul { 
  list-style-type: disc; 
  padding-left: 20px; 
} 
@media (max-width: 768px) {
   .expert-text { 
    flex-direction: column; 
  } .webcolumn { 
    margin-bottom: 20px; 
  } 
}

/* -------------------------------------------------------- 
 -------End of Web Development Page Css -------------------
 --------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------------ */

 /*------------------------------------------------------------------
 -------- Start of Mobile Application Page Css-------------------
 ----------------------------------------------------------------- */
 .main-mob { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.mob-title1 { 
  background: url('../img/mob.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.mob-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.mob-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .mob-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .mob-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .mob-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .mob-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}

 .mobile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.mobile-service h2{
  text-align: center; 
  margin-bottom: 20px; 
}
.mobcard {
  background-color: #000000;
  border: 2px solid #ccc;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(255, 255, 0, 0.5);
  animation: fadeInSlideUp 4s ease-out forwards;
}


 .mobile-cards .mobcard:hover {
  
  transform: translateY(5px); /* Slight lift effect on hover */
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.7), 0 6px 30px rgba(0, 0, 0, 0.2);

}

.mobcard i {
  font-size: 3em;
  color: #ffc50a; /* Adjust color as needed */
}

.mobcard h2 {
  margin: 10px 0;
  color: #ffc50a;
}

.mobcard p {
  margin: 0;
  color: #ffffff;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .mobile-cards {
      grid-template-columns: 1fr;
  }
}










 /*------------------------------------------------------------------
 -------- End of Mobile Application Page Css-------------------
 ----------------------------------------------------------------- */


/* --------------------------------------------------------------------------
----------Start of Cloud computing page--------------------------------
-------------------------------------------------------------------- */

.main-cloud { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.cloud-title1 { 
  background: url('../img/cloud.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.cloud-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.cloud-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .cloud-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .cloud-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .cloud-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .cloud-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}


/* --------------------------------------------------------------------------
----------End of Cloud computing page--------------------------------
-------------------------------------------------------------------- */



/*------------------------------------------------------------------
 --------------SEO Page design------------------------------------- 
 --------------------------------------------------------------------*/
 @keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Slide in from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at normal position */
  }
}
 .main-seo { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.seo-title1 { 
  background: url('../img/seobg.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.seo-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.seo-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .seo-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .seo-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .seo-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .seo-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}

 
.btn-get-started {
   display: inline-block; 
   background-color: #ffc50a; /* Primary color */
    color: rgb(0, 0, 0);
     padding: 10px 20px;
      font-size: 16px; border: none;
       border-top-left-radius: 5px;
       border-bottom-right-radius: 5px;
       cursor:pointer; 
        text-align: center; 
       text-decoration: none; 
       transition: background-color 0.3s ease; 
       margin-top: 20px; } 
       .btn-get-started a { 
        color: #000000; 
        text-decoration: none; 
      } 
      
      @keyframes slideInFromRight {
        0% {
          opacity: 0;
          transform: translateX(100%);
        }
        100% {
          opacity: 1;
          transform: translateX(0);
        }
      }
      @keyframes slideInFromLeft {
        0% {
          opacity: 0;
          transform: translateX(-100%);
        }
        100% {
          opacity: 1;
          transform: translateX(0);
        }
      }
.seo-design {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: slideInFromLeft ease-out forwards;
  animation-duration: 2s;
}

.seo-design img {
  flex: 1;
  width: 100%; /* Adjust as needed */
  height: 350px; /* Maintain aspect ratio */
  border-radius: 5%;
  animation: slideInFromRight ease-out forwards;
  animation-duration: 2s;
}
@media (max-width: 768px) {
.seo-design { 
  flex-direction: column; 
  text-align: center; 
} 
.seo-image { 
  max-width: 100%; 
  margin-bottom: 20px; 
  border-radius: 5%;
} 
.seo-txt { 
  margin-left: 0; 
  padding: 20px; 
  animation: slideInFromLeft ease-out forwards;
  animation-duration: 2s;
} 
}


.seo-design1 {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      animation: slideInFromLeft ease-out forwards;
      animation-duration: 2s;
    }
    
    .seo-design1 img {
      flex: 1;
      width: 50%; /* Adjust as needed */
      height: auto; /* Maintain aspect ratio */
      animation: slideInFromRight ease-out forwards;
      animation-duration: 2s;
    }
    
    .seo-txt {
      flex: 1;
      text-align: left;
      margin: 0 20px;
      padding: 20px;
      animation: slideInFromLeft ease-out forwards;
      animation-duration: 2s;
    }
    @keyframes slideDown{
      0% {
        opacity: 0;
        transform: translateY(0);
      }
      100% {
        opacity: 1;
        transform: translateY(10%);
      }
    }

    .seo-txt1 {
      flex: 1;
      text-align: left;
      margin: 0 20px;
      padding: 20px;
      animation: slideDown ease-out forwards;
      animation-duration: 3s;
    }
    
    
    @media (max-width: 768px) {
      .seo-design1 {
        flex-direction: column;
      }
    
      .seo-txt {
        margin: 20px 0;
      }
      .ux-card { 
        flex-direction: column; 
        text-align: center; 
      } 
      .text-container { 
        margin: 20px 0; 
      } 
      .btn-get-started {
         margin-top: 20px; 
        } 
        }
/* -------------------------------------
----------SEO page End-------------------------------------------
-------------------------------------------------------- */



/* -----------------------------------------------------
------------E-commerce Start----------------------------------
--------------------------------------------------------- */

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Slide in from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at normal position */
  }
}
 .main-com { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.com-title1 { 
  background: url('../img/ecbg.jpeg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.com-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.com-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .com-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .com-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .com-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .com-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}

/* --------------------------------------------------------------
-----------------E-commerce End----------------------------------
----------------------------------------------------------------- */





/* ------------------------------------------------------------------
-------------Custom Software Development Start------------------------------
===================================================================== */
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Slide in from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at normal position */
  }
}
 .main-cus { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.cus-title1 { 
  background: url('../img/custom-software-development.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.cus-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.cus-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .cus-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .cus-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .cus-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .cus-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  /* background-color: var(--background-color); */
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}



.hero .carousel-item:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  /* background-color: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  z-index: 3;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h1,
  .hero p {
    max-width: 60%;
  }
}

.carousel-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-container {
    padding: 10px;
  }

  .carousel-container h1 {
    font-size: 24px;
  }

  .carousel-container h3 {
    font-size: 16px;
  }

  .carousel-container .btn-get-started {
    font-size: 14px;
    padding: 8px 12px;
  }
}


.hero .btn-get-started {
  color: #2d2c2c;
  width: 200px;
  background: #ffc50a;
  font-weight: 400;
  font-size: 18px; /* Smaller font size */
  letter-spacing: 1px;
  padding: 6px 16px; /* Reduced padding to make the button smaller */
 border-top-left-radius: 10px;
 border-bottom-right-radius: 10px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
  display: inline-block; /* Ensure the button behaves like an inline element */
  text-align: center; /* Align text to the left within the button */
}


.hero .btn-get-started:hover {
  background: color-mix(#d1d1d1, transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about .about-img img {
  position: relative;
  z-index: 2;
  width: 100%; /* Default to 100% width to ensure responsiveness */
  height: auto; /* Maintain aspect ratio */
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 0 auto; /* Center the image horizontally */
    text-align: center; /* Align the image container to center */
    width: 90%; /* Adjust container to 90% width */
  }

  .about .about-img img {
    width: 90%; /* Make the image cover 90% of the screen width */
    height: auto; /* Maintain aspect ratio */
  }

  .about .about-img:before {
    display: none; /* Hide the background in mobile view if it's not necessary */
  }
}


.about h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}

.about .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  margin-top: 50px;
  padding: 30px;
  text-align: center;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
  background-color: #ffffff;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 10px; 
  width: 65px;
  height: auto;
  transition: 0.3s;
  opacity: 1;
  filter: none;
  border-radius: 10px;
}

.clients .client-logo img:hover {
  transform: translateY(2px) scale(1.5);
  opacity: 1;
}
.filter-btn {
  margin: 5px;
  padding: 10px 20px;
  background-color: #ffc50a;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 255, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.filter-btn:hover  {
  background-color: #000000;
  color: #ffc50a;
  border: 1px solid #ffffff;
}
.filter-btn.active {
  background-color: #000000;
  color: #ffc50a;
  border: 1px solid #ffffff;
  
}
.client-logo {
  display: block;
}


@media (max-width: 640px) { 
  .clients .row { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
  } 
  .clients .col { 
    flex: 0 1 calc(33.333% - 20px); 
    margin: 10px; 
  } 
  .clients .client-logo img { 
    padding: 10px; 
    width: 60px; 
    height: 60px; 
  } 
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.services .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: #ffffff;
  color: #000000;
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 229, 83, 0.5), 0 4px 20px rgba(173, 172, 172, 0.1);
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: #000000;
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.7), 0 6px 30px rgba(0, 0, 0, 0.2);
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a, .btn-get-started:hover a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

.btn-get-started5 {
  margin-top: 15px;
  display: inline-block;
  background-color: #000000; /* Gold color */
  color: #ffc50a; /* Black text */
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ffd700; /* Gold border to ensure smooth inversion */
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.3s ease; /* Smooth transition for hover effect */
  cursor: pointer;
}

.btn-get-started5:hover {
  background-color: #000; /* Black background */
  color: #ffd700; /* Gold text */
  border-color: #000; /* Black border */
  transition: 0.5s;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  color: #000000;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  border: 1px solid;
  background-color: #000000;
  color: #d1d1d1;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio-item img{
  padding: 10px;
  width: 300px;
  height: 200px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #000000;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: #000000;
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}
@media (max-width: 768px) {
  .portfolio-item img {
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
    width: 100%; /* Ensures the image scales to fit the container */
    max-width: 300px; /* Sets a maximum width to prevent oversized images */
  }

  .portfolio-info {
    text-align: center; /* Aligns text and icons under the image */
  }

  .portfolio-info h4 {
    font-size: 1.2rem; /* Adjusts the heading size for better readability */
    margin-top: 10px; /* Adds spacing above the title */
  }

  .portfolio-info p {
    font-size: 1rem; /* Adjusts paragraph font size for readability */
    margin: 10px 0; /* Adds spacing around the paragraph */
  }

  .portfolio-info a {
    display: inline-block; /* Keeps icons inline and center-aligned */
    margin: 0 5px; /* Adds spacing between the icons */
  }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-container {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
background: rgb(255,197,10);
background: linear-gradient(90deg, rgba(255,197,10,1) 32%, rgba(159,147,88,1) 75%, rgba(0,0,0,1) 100%);
  padding: 20px;
}

.faq-item {
  border-bottom: 1px solid #f1f1f1;
}

.faq-header {
  cursor: pointer;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;

}

.faq-header:hover {
  background: #ffc50a;
  transform: translateY(-3px);
}

.faq-body {
  background: #fdfdfd;
  border-radius: 5px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-icon {
  font-size: 1.5rem;
  color: #ffc50a;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-header:hover .faq-icon {
  color: #000000;
}

.collapse.show .faq-icon {
  transform: rotate(180deg);
}

.faq-body ul {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  margin-top: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  max-height: 0;
}

/* Ensure responsive typography */
.faq-header h5 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  color: #000000;
}

.faq-body p, .faq-body ul {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.container-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}



.contact-address, .contact-map {
  flex: 1 1 calc(50% - 20px);
  background: #000000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.contact-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-address h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #6c63ff;
}

.contact-address img {
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 100%;
  height: 60px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .container-contact {
      flex-direction: column;
  }

  .contact-address, .contact-map {
      flex: 1 1 100%;
  }
}

.main-contact { 
  color: white;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.contact-title1 { 
  background: url('../img/contact.jpg') no-repeat center center; /* Ensure the image is centered */
  background-size: cover; /* Ensure the image covers the full container */
  width: 100%;
  padding: 0;
  height: 600px; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  position: relative;
  animation: fadeInSlideUp 4s ease-out forwards;
}

.contact-title1::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

.contact-title1 h1 {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  font-weight: bold;
  text-align: center;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .contact-title1 h1 {
      font-size: 2em; /* Adjust font size for smaller screens */
  }

  .contact-title1 {
      height: 60vh; /* Reduce height for mobile devices */
  }
}

@media (max-width: 480px) {
  .contact-title1 h1 {
      font-size: 1.5em; /* Further adjust font size for very small screens */
  }

  .contact-title1 {
      height: 50vh; /* Further reduce height for very small screens */
  }
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.contact-icons {
  display: flex;
  gap: 10px;
margin: 0 auto;
}

.icon-link {
  display: flex;
 align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-link:hover {
  background-color: #ffc107; /* Accent color */
  color: #fff;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Portfolio Container */
.isotope-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  overflow: visible;
  margin-bottom: 20px; /* Add margin to prevent overlap with next section */
}

/* Portfolio Item (hidden by default) */
.portfolio-item.hidden {
  display: none; /* Initially hidden */
}

/* View All Button */
.view-all-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #007bff;
  color: white;
  text-align: center;
  font-size: 18px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #0056b3; /* Add hover effect */
}

/* Media Query for Mobile & Tablet Layout */
@media (max-width: 768px) {
  .portfolio-item {
    flex: 0 0 48%; /* Display 2 items in a row */
    margin-bottom: 20px; /* Add space between items */
  }

  /* Adjust margin for hidden items */
  .portfolio-item.hidden {
    margin-bottom: 0; /* Remove margin for hidden items */
  }

  /* Ensure the 'View All' button is positioned correctly */
  .view-all-btn {
    display: block;
    margin: 20px 0;
  }
}

/* Media Query for Desktop Layout (above 768px) */
@media (min-width: 769px) {
  .portfolio-item {
    flex: 0 0 31%; /* Display 3 items in a row */
  }

  /* Hide 'View All' button on larger screens */
  .view-all-btn {
    display: none;
  }
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}