
/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #D12124; /* 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: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #e84545; /* 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: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e84545; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* 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);
}

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: #059652;
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  width: 100%;
  height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  margin: 0;
  transition: 0.3s;
}

.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 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 22px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500; /* Increased font weight for readability */
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    text-decoration: none;
    
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: none; /* Initially hidden */
    position: absolute;
    left: 0;
    top: 100%; /* Position below the parent item */
    opacity: 0;
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: max-content; /* Fit content width */
    min-width: 200px; /* Minimum width */
  }

  .navmenu .dropdown:hover > ul {
    display: block; /* Show on hover */
    opacity: 1; /* Fade in */
    visibility: visible; /* Make visible */
  }

  .navmenu .dropdown ul li {
    min-width: 200px; /* Consistent minimum width for items */
  }

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

  .navmenu .dropdown ul a:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Hover background for dropdown items */
    color:#df1529;
  }

  /* Style for nested dropdowns */
  .navmenu .dropdown .dropdown ul {
    left: 100%; /* Positioned to the right of the parent dropdown */
    top: 0;
    text-decoration: none;
    display: none; /* Initially hidden */
    opacity: 0;
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
  }

  .navmenu .dropdown .dropdown:hover > ul {
    display: block; /* Show nested dropdown on hover */
    opacity: 1; /* Fade in */
    visibility: visible; /* Make visible */
  }
}

/* Change the color of the icons inside the dropdown */
.navmenu .dropdown-menu i {
  color: #D12124; /* Icon color */
  margin-right: 10px; /* Add some space between the icon and text */
}

/* Make the text smaller inside dropdown */
.navmenu .dropdown-menu a {
  font-size: 12px; /* Reduce font size of menu items */
}

/* Change the color of the icon for active dropdown menu items */
.navmenu .dropdown-menu a:hover i {
  color: #D12124; /* Ensure icon color changes on hover as well */
  text-decoration: none;
}

/* Optional: For better alignment of the dropdown icons and text */
.navmenu .dropdown-menu a span {
  display: flex;
  align-items: center; /* Align icon and text vertically */
}

/* Navmenu - Mobile */
@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: 22px 0;
    z-index: 9997;

  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Subtle hover background */
  }

  .navmenu .dropdown ul {
    position: static;
    display: none; /* Initially hidden */
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block; /* Show on active */
    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;
  }
}

/* General Styles for Dropdown */
.navmenu ul {
  position: relative;
}

.navmenu .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff; /* Change to your desired color */
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  padding: 30px 0; /* Spacing inside dropdown */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  z-index: 1000; /* Ensure it appears on top */
}

/* Show dropdown on hover */
.navmenu .dropdown:hover > .dropdown-menu {
  display: block;
}

/* Styles for Dropdown Links */
.navmenu .dropdown-menu a {
  padding: 10px 20px; /* Padding for links */
  color: #333; /* Text color */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.2s ease; /* Transition for hover effect */
}

.navmenu .dropdown-menu a:hover {
  background-color: #f1f1f1; /* Light gray background on hover */
}

/* Deep Dropdown Styles */
.navmenu .dropdown .dropdown-menu .dropdown-menu {
  left: 100%; /* Position to the right */
  top: 0; /* Align to top */
  margin-left: 0; /* Remove margin */
}

/* Responsive Mobile Nav */
@media (max-width: 1199px) {
  .navmenu .dropdown-menu {
    position: static; /* Make dropdown static on mobile */
    border: none; /* Remove border */
    box-shadow: none; /* Remove shadow */
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #858e953f;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  font-size: 14px;
  padding: 50px 0;
  position: relative;
  
}

.rotate-icon {
  transform: rotate(90deg); /* Rotate 90 degrees */
  display: inline-block;    /* Ensures proper rotation */
}


.footer .footer-top {
  padding-top: 30px;
}



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

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

.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: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1); /* Scale effect on hover */
}

.footer h4 {
  font-size: 18px; /* Increased size for better visibility */
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1.5; /* Adjusted line height */
  padding: 6px;
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

.footer .copyright {
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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



/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    display: flex;
    flex-direction: column;
      text-align: left; /* Align text to the left */
  }

  .footer .footer-about {
      text-align: left; /* Align logo and paragraph to the left */
  }

  .footer-about img{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer .social-links {
      justify-content: flex-start; /* Align social links to the start */
      margin-bottom: 20px;
  }

  .footer .footer-links {
      text-align: left; /* Keep links aligned to the left */
      margin-bottom: 20px; /* Added margin for spacing */
  }

  .footer .footer-links ul {
      padding-left: 0; /* Remove padding from the list */
  }

  .footer .footer-contact {
      text-align: left; /* Align contact info to the left */
  }

  .footer .footer-contact p {
      margin: 5px 0; /* Keep consistent spacing for contact info */
  }
}

@media (max-width: 576px) {
  .footer .footer-links {
    display: flex;
    flex-direction: column;
      margin-bottom: 15px; /* Adjusted bottom margin for smaller devices */
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

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

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

/*--------------------------------------------------------------
# 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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.breadcrumb {
  font-size: 1.5rem; /* Increase the font size for the breadcrumb */
}

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

.info-item {
  height: 220px; /* Set fixed height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9; /* Optional background color */
  border-radius: 8px; /* Optional: rounded corners */
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .info-item {
    height: auto;  /* Let the height adjust automatically on small screens */
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.hero:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 40%); */
  background: rgba(0, 0, 0, 0.66);
  color: aliceblue;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
}


.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

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

  .hero p {
    font-size: 18px;
  }
}

/* Unique Class for the Section */
.transform-section {
  padding: 60px 0;
  margin-top: 40px; /* Added margin-top for spacing */
}

/* Unique Class for the Heading */
.transform-heading {
  font-size: 20px; /* Reduced font size */
  /* font-weight: 300; */
  color: #fff;
  margin-bottom: 20px; /* Gap between heading and text */
}

/* Container for the Paragraphs */
.transform-text-content {
  margin-bottom: 20px; /* Proper margin-bottom applied after the paragraphs */
}

/* Unique Class for the Paragraph */
.transform-paragraph {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px; /* Smaller gap between the two paragraphs */
}

/* Second Paragraph as a New Line */
.second-line {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Unique Class for the Button */
.btn-transform {
  border: none;
  cursor: pointer;
  background-color:#D12124 ;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.btn-transform:hover {
  background-color: #d12124a5; /* Darken button on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .transform-heading {
    font-size: 24px; /* Reduced heading size on mobile */
  }

  .transform-paragraph {
    font-size: 14px; /* Reduced paragraph size on mobile */
  }

  .btn-transform {
    font-size: 14px; /* Adjust button font size for mobile */
  }
  
  .transform-section {
    padding: 40px 15px; /* Add padding on mobile for spacing */
  }

  .col-md-10 {
    max-width: 100%; /* Ensure content fits well on mobile */
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Career Section
--------------------------------------------------------------*/
.build-future-section {
  padding: 50px 0;
}

.build-future-section .content-wrapper {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: black;
  width: 80%; /* Set the width of the background to 80% */
  border-radius: 15px; /* Border radius for rounded corners */
  padding: 30px; /* Padding inside the box for content */
}

.build-future-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.build-future-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .build-future-section h2 {
    font-size: 28px;
  }

  .build-future-section p {
    font-size: 16px;
  }

  .build-future-section .content-wrapper {
    width: 90%; /* Adjust width for smaller devices */
  }
}

@media (max-width: 576px) {
  .build-future-section h2 {
    font-size: 24px;
  }

  .build-future-section p {
    font-size: 14px;
  }

  .build-future-section .content-wrapper {
    width: 95%; /* Full width for mobile */
  }
}
.icon-card-section {
  padding: 20px 0;
  text-align: center; /* Center the section heading */
}

.icon-card {
  display: flex;
  flex-direction: column; /* Stack icon, heading, and paragraph vertically */
  align-items: center; /* Center items horizontally */
  background-color: white; /* White background for the card */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Padding inside the card */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
  margin: 20px; /* Spacing between cards */
  transition: transform 0.3s; /* Smooth transition on hover */
  height: 230px; /* Set height for cards */
  border: 1px solid #d12124;
}

.icon-card i {
  font-size: 40px; /* Icon size */
  color: var(--accent-color); /* Icon color */
  margin-bottom: 10px; /* Space below the icon */
}

.icon-card h4 {
  font-size: 20px; /* Heading size */
  font-weight: bold; /* Bold heading */
  margin: 10px 0; /* Space above and below the heading */
}

.icon-card p {
  margin: 0; /* No margin for paragraph */
  font-size: 16px; /* Paragraph size */
  color: #333; /* Dark color for text */
}

/* Add hover effect */
.icon-card:hover {
  transform: translateY(-5px); /* Raise the card on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .icon-card {
    margin: 15px 0; /* Vertical spacing */
  }
}

@media (max-width: 576px) {
  .icon-card {
    /* Stacking is already handled by flex-direction */
  }
}


.dream-career-section {
  padding: 50px 0; /* Top and bottom padding */
  /* background-color: var(--default-color);  */
}

.dream-career-section h2 {
  font-size: 28px; /* Heading size */
  font-weight: bold; /* Bold heading */
  margin-bottom: 20px; /* Space below the heading */
  color: #000; /* Dark color for text */
}

.dream-career-section p {
  font-size: 16px; /* Paragraph size */
  max-width: 800px; /* Max width for paragraph */
  margin: 0 auto; /* Center the paragraph */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .dream-career-section h2 {
    font-size: 24px; /* Adjust heading size for smaller screens */
  }

  .dream-career-section p {
    font-size: 14px; /* Adjust paragraph size for smaller screens */
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

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

.services .service-item .description {
  line-height: 24px;
  font-size: 16px;
}

.service-item p{
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-grid {
  display: flex; /* Changed from grid to flexbox for flexible layout */
  flex-wrap: wrap; /* Allow wrapping of items */
  justify-content: center; /* Center the items */
  margin-top: 30px; /* Space above the grid */
}

/* Feature Box Styles */
.feature-box {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--accent-color);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Added transform for scaling */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  display: flex; /* Flexbox for centering content */
  flex-direction: column; /* Align children vertically */
  justify-content: center; /* Center children vertically */
  align-items: center; /* Center children horizontally */
}

/* Icon Container */
.icon-container {
  width: 60px; /* Width of the icon circle */
  height: 60px; /* Height of the icon circle */
  border-radius: 50%; /* Make the container circular */
  display: flex; /* Flexbox for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  margin-bottom: 15px; /* Space below the icon */
  transition: transform 0.3s; /* Animation for scaling */
}
.icon-container i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  transition: 0.3s all;
}
/* Icon Style */
.icon {
  color: white; /* Icon color */
  font-size: 24px; /* Icon size */
}

/* Hover State */
.feature-box:hover {
  background-color: white;
  color: var(--accent-color);
}

.feature-box:hover .icon-container {
  transform: scale(1.1); /* Scale up the icon circle */
}

.icon-container:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Heading and Paragraph */
.feature-box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #D12124;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .features-grid {
    flex-direction: column; /* Stack items on smaller screens */
  }
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column; /* Stack items on mobile screens */
  }
}




/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

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

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.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 input[type=tel]: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 input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  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);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* About Sections Container */
.about-sections {
  padding: 60px;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Image Styling */
.about-image {
  width: 100%;
  border-radius: 15px; /* Rounded corners */
  max-height: 350px;
  object-fit: cover; /* Maintain aspect ratio and cover the container */
}

/* Box around the image */
.image-container {
  padding: 20px; /* Increased space around the image */
  border-radius: 15px; /* Rounded corners */
  overflow: hidden; /* Ensures the image fits within the rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effect */
  max-width: 100%; /* Ensure the box does not overflow its container */
}

.image-container:hover {
  transform: scale(1.05); /* Slightly zooms the image on hover */
}

/* Ensure image columns are responsive */
@media (max-width: 768px) {
  .image-container {
    padding: 10px; /* Less padding on small screens */
  }
  .about-sections {
    padding: 20px; /* Adjust container padding on smaller screens */
  }
}

/* Prevent horizontal scrolling */
body, html {
  overflow-x: hidden;
  width: 100%;
}


/* Button Styling */
.btn-journey {
  display: inline-block;
  background-color: #D12124; /* Button background color */
  color: aliceblue;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 50px; /* Fully rounded corners */
  margin-bottom: 20px; /* Space below button */
  border: none;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-journey:hover{
  color: aliceblue;
  background-color: #d12124dc;
}

/* Heading Styling */
.about-heading {
  font-size: 32px;
  font-weight: 700; /* Extra bold */
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333;
}

/* Paragraph Styling */
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  /* margin-bottom: 12px; */
}
.about-text p{
  margin-bottom: 12px;
  font-size: 1rem;
}
/* Flex Alignment */
.row {
  display: flex;
  align-items: stretch; /* Ensures both columns are equal height */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-heading {
    font-size: 28px; /* Adjust heading size for smaller screens */
  }

  .about-text {
    font-size: 14px; /* Adjust paragraph size for smaller screens */
  }

  .btn-journey {
    padding: 8px 14px; /* Adjust button padding for smaller screens */
  }

  .about-image {
    max-height: 300px; /* Limit height for smaller screens */
  }
}
.job-section {
  background-color: #f4f7fc;
}

.job-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D12124;
}

.job-section .btn-primary {
  background-color: #D12124;
  border-color: #D12124;
  font-size: 1.2rem;
}
.job-btn{
  background-color: var(--accent-color);
  color: #f1f1f1;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}
.job-btn:hover{
background: transparent;
color: #d12124;
  border: 1px solid #d12124;
}

/* General Container Styling */
.content-container {
  max-width: 1000px;
  margin: 20px auto;
  /* padding: 30px; */
  font-family: 'Roboto', sans-serif;
}

/* Main Heading Styling */
.main-heading {
  color: var(--accent-color);
  padding: 10px 30px;
  text-align: center;
  border-radius: 12px;
  font-size: 2rem;
  letter-spacing: 0.7px;
  font-weight: 700;
  /* box-shadow: 0 6px 20px rgba(30, 144, 255, 0.1); */
}

/* Paragraph Below Main Heading */
.main-paragraph {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.5;
}

/* Service Boxes Container */
.service-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Service Box Styling */
.service-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 15px;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
  transition: all 0.3s ease;
  overflow: hidden;
}
.content-container h1{
  color: var(--accent-color);;
}

.service-box.left {
  flex-direction: row-reverse;
}

.service-box.right {
  flex-direction: row;
}

/* Hover Effect for Service Box */
.service-box:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); */
}

/* Service Box Heading */
.service-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent-color);;
  margin-bottom: 10px;
}

/* Service Box Text */
.service-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
  text-align: justify;
}

/* Padding Between Paragraphs */
.padded-paragraph {
  margin-bottom: 15px;
}

/* Service Image Container */
.service-image-container {
  width: 40%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.service-image  {
  
  object-fit: cover;
  transition: transform 0.3s ease;
}


.service-image-container:hover .service-image {
  transform: scale(1.05);
}

/* Text Container */
.service-text-container {
  width: 55%;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .main-paragraph{
    text-align: center;
  }
  .service-box {
    flex-direction: column;
  }

  .service-image-container,
  .service-text-container {
    width: 100%;
  }

  .service-box.left {
    flex-direction: column;
  }

  .service-box.right {
    flex-direction: column;
  }
}

/* service page middle section */
.custom-section {
  background-color: black;
  padding: 50px 0;
  width: 100%;
}

.section-border{
  border: 4px solid aliceblue;
  border-radius: 20px;
  padding: 30px 20px;
}

.custom-section ul {
  list-style: none;
  padding: 0;
}

.custom-section ul li {
  color: white;
  margin: 10px 0;
}

.custom-section ul li a {
  color: aliceblue;
}

.custom-section .bi-check-circle-fill {
  color: #D12124;
  margin-right: 10px;
}

.custom-section h2, .custom-section p {
  color: white;
}
.centered-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  text-align: left;
}
.centered-text h2{
  text-align-last: left;
}
@media (max-width: 767px) {
  .custom-section .row {
      flex-direction: column;
      gap: 25px;
  }
}

/* services advantages */
/* Skeleton Loader Style */
.skeleton-loader {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ecf4fb; /* Light background */
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  animation: skeleton 2s infinite ease-in-out;
}

.skeleton-loader .skeleton-number {
  width: 50px;
  height: 50px;
  background-color: #bdc3c7;
  border-radius: 50%;
  margin-right: 20px;
}

.skeleton-loader .skeleton-text {
  flex: 1;
}

.skeleton-loader .skeleton-title {
  width: 60%;
  height: 18px;
  background-color: #bdc3c7;
  margin-bottom: 10px;
}

.skeleton-loader .skeleton-description {
  width: 90%;
  height: 14px;
  background-color: #bdc3c7;
  margin-bottom: 8px;
}

/* Animation for Skeleton */
@keyframes skeleton {
  0% {
    background-color: #ecf4fb;
  }
  50% {
    background-color: #d6dde1;
  }
  100% {
    background-color: #ecf4fb;
  }
}

/* Real Content */
.advantages-section {
  padding: 50px 20px;
  background-color: #f4f6f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.advantages-heading {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.advantage-item {
  display: flex;
  align-items: flex-start; /* Align items vertically */
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.advantage-number {
  font-size: 2rem;
  color: #D12124; /* Updated color for the number */
  font-weight: bold;
  padding: 12px;
  border-radius: 50%;
  background-color: #ecf4fb;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  font-size: 1.3rem;
  color: #34495e;
  font-weight: 600;
  margin-bottom: 10px; /* Less margin for tight vertical alignment */
}

.advantage-text {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-top: 0; /* Ensures there’s no additional space between the heading and paragraph */
}

.advantage-icon {
  font-size: 1.6rem;
  color: #3498db;
  margin-right: 15px;
}

/* Add responsive design for better mobile experience */
@media screen and (max-width: 768px) {
  .advantage-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .advantage-number {
    margin-bottom: 15px;
  }

  .advantage-content {
    width: 100%;
  }
}
/* benefits section */
/* Styling for the new Benefits section */
.benefits-section {
  padding: 50px 20px;
  background-color: #f4f6f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits-heading {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.benefit-item {
  display: flex;
  align-items: flex-start; /* Align items vertically */
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
/* Benefits Section */
.benefits-section {
  padding: 50px 0;
  background-color: #F4F8FB;
}

/* Section Header */
.section-header {
  margin-bottom: 40px;
}

.section-title2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.section-title2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #D12124;
}

/* Benefits Container */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-container {
  flex-shrink: 0;
  margin-right: 20px;
}

.benefit-icon {
  font-size: 2.5rem;
  color: #D12124;
}

.benefit-content {
  flex-grow: 1;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 1rem;
  color: #777;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-container {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title {
      font-size: 2rem;
  }

  .benefit-title {
      font-size: 1.1rem;
  }

  .benefit-description {
      font-size: 0.9rem;
  }
}


.benefit-number {
  font-size: 2rem;
  color: #D12124; /* Red color for the number */
  font-weight: bold;
  padding: 12px;
  border-radius: 50%;
  background-color: #ecf4fb;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.3rem;
  color: #34495e;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin-top: 0;
}

.benefit-icon {
  font-size: 1.6rem;
  color: #3498db;
  margin-right: 15px;
}

/* Add responsive design for better mobile experience */
@media screen and (max-width: 768px) {
  .benefit-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-number {
    margin-bottom: 15px;
  }

  .benefit-content {
    width: 100%;
  }
}
/* Container Section */
/* Custom Box Style */
.custom-box {
  border: 2px solid #D12124;  /* Red border color */
  border-radius: 15px;  /* Rounded corners */
  padding: 30px;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;  /* Ensures boxes have equal height */
  transition: all 0.3s ease;  /* Smooth transition for hover */
}

/* Icon Container */
.icon-container2 {
  background-color: aliceblue;
  border-radius: 50%;  /* Circular background */
  padding: 20px;
  color: #D12124;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  font-weight: 400;
}

.icon-container2 i {
  font-size: 40px;
}

/* Heading Styling */
.box-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Paragraph Text Styling */
.box-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-box {
      padding: 20px;
  }

  .box-title {
      font-size: 1rem;
  }

  .box-text {
      font-size: 0.85rem;
  }

  .icon-container2 {
      width: 70px;
      height: 70px;
  }

  .icon-container2 i {
      font-size: 35px;
  }
}

@media (max-width: 576px) {
  .custom-box {
      padding: 15px;
  }

  .box-title {
      font-size: 0.9rem;
  }

  .box-text {
      font-size: 0.8rem;
  }

  .icon-container2 {
      width: 60px;
      height: 60px;
  }

  .icon-container2 i {
      font-size: 30px;
  }
}
.box-head-1{
  font-size: 40px;
  color: #D12124;
  text-align: start;
  margin-bottom: 30px;
  justify-content:flex-start;
}
.box-para-1{
  font-size: 1.2rem;
  /* text-align: justify; */
  margin: 5px;
}

@media (max-width: 767px) {
  .box-head-1{
    font-size: 30px;
    color: aliceblue;
    text-align: start;
    margin-bottom: 30px;
    justify-content:flex-start;
  }
  .box-para-1{
    font-size: 0.9rem;
    /* text-align: justify; */
    margin: 5px;
  }
}

/* Call-to-Action Section */
.cta-section {
  padding: 60px 0;
  /* background-color: #1F8BF7; */
  color: black;
}.cta-button{
  background: #D12124;
  color: white;
}

/* Centering content and styling the message */
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* CTA Message */
.cta-message {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* CTA Button */
.cta-button {
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 7px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Add shadow effect */
}

/* Optional: Animation for the button using keyframes */
@keyframes hoverAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply the animation to the button */
.cta-button:hover {
  color: #d12124;
  border: 1px solid #d12124;
  background: transparent;
  animation: hoverAnimation 0.6s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-message {
      font-size: 1.25rem;
  }

  .cta-button {
      font-size: 0.9rem;
  }
}


/* Vision AI Section Styles */
.vision-ai-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  padding: 40 0px;
}

.vision-ai-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  text-align: center;
}

.vision-ai-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-ai-title {
    font-size: 2rem;
  }

  .vision-ai-description {
    font-size: 1rem;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .vision-ai-title {
    font-size: 1.8rem;
  }

  .vision-ai-description {
    font-size: 0.95rem;
  }
}

.service-item-2 {
  background-color: #fff; /* Background color of the box */
  color: #002A5C; /* Text color */
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 200px; /* Ensures consistent height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: all 0.3s;
  border: 1px solid #000;
}
.service-item-2 h5{
  font-size: 26px;
  font-weight: bold;
  color: #D12124;
}
.service-item-2:hover{
  transform: scale(1);
  background-color: #D12124;
  color: aliceblue;
}
.service-item-2:hover h5{color: #fff;}
.service-item-2:hover p{color: #fff;}
.section-heading {
  color: #D12124;
}
@media (max-width: 992px) {
  .service-item-2 {
      width: 100%; /* Remove fixed height for smaller screens */
  }
}

/* box with number*/
.box {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);; /* Box background color */
  border: 1px solid #002A5C; /* Border color to match background */
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 250px; /* Adjust width as needed */
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.step-number {
  background-color: #D12124; /* Background color for step number */
  color: #fff; /* Color for step number */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: -20px;
  border: 2px solid #fff; /* Border around step number */
}

.box p {
  margin: 0;
}

@media (max-width: 768px) {
  .box {
      max-width: 100%;
      margin-right: 0;
  }

  .step-number {
      position: static;
      margin-bottom: 10px;
  }
}


@media (max-width: 992px) {
  .box {
      max-width: none; /* Allow full width on smaller screens */
  }

  .arrow-right {
      display: none; /* Hide right arrow on small screens */
  }

  .arrow-down {
      display: block; /* Show down arrow on small screens */
      position: relative;
      margin: 20px auto 0; /* Center down arrow and provide margin */
      font-size: 24px; /* Adjust size as needed */
      color: #002A5C;
  }

  /* Stack boxes vertically on smaller screens */
  
}

.gradient-section {
  background: #000; /* Black background */
  padding: 50px 0; /* Top and bottom spacing */
  color: #fff; /* White text */
  
}
.gradient-border{
  border: 4px solid #fff;
  border-radius: 10px;
  padding: 20px;
}
.first-row {
  margin-bottom: 50px;
}

.section-title3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #D12124; /* Brown color for heading */
}

.section-description {
  font-size: 1.2rem;
  color: #ccc; /* Light gray text for description */
}

.second-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.column-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #D12124; /* Brown color for column titles */
}

.column-description {
  font-size: 1rem;
  color: #ccc; /* Light gray text for column descriptions */
}

@media (max-width: 768px) {
  .second-row {
    flex-direction: column; /* Stacks the columns vertically on smaller screens */
  }

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

  .column-description {
    font-size: 0.9rem;
  }
}

.features-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}
/*  Solutions vision AI */
.custom-card {
  border-radius: 12px;
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid black;
  max-width: 420px; /* Ensures consistent width across devices */
}

.custom-card-header {
  text-align: left;
  padding: 15px;
  border-radius: 8px 8px 0 0;
}

.custom-card-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  color: #D12124;
  text-align: center;
}

.custom-card-image-wrapper {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 5px;
}

.custom-card-image {
  border-radius: 4px;
}

.custom-card-content {
  padding: 10px;
  border-radius: 8px;
}

.custom-card-list {
  border: 1px solid #ddd;
  border-radius: 8px;
}

.custom-card-list li {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.custom-card-list li:last-child {
  border-bottom: none;
}

/* Unique Centered Section */
.unique-centered-section {
  background: #f8f9fa;
  color: #333;
}

.unique-centered-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

.unique-centered-paragraph {
  font-size: 1rem;
  color: #555;
}

/* Unique Services Section */
.unique-services-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

/* Unique Card Styles */
.unique-card-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%; /* Ensures equal height for all cards */
  display: flex;
  flex-direction: column;
}

.unique-card-img {
  width: 100%;
  height: 200px; /* Sets a consistent image size */
  object-fit: cover; /* Ensures the image fits within the size */
  padding: 10px;
  border-radius: 10px;
}

.unique-card-img img{
  border-radius: 10px;
}

.unique-card-body {
  padding: 15px;
  text-align: center;
  flex-grow: 1; /* Ensures content fills the remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unique-card-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.unique-card-description {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .unique-card-wrapper {
    margin-bottom: 20px;
  }

  .unique-centered-heading {
    font-size: 2rem;
  }

  .unique-centered-paragraph {
    font-size: 1rem;
  }
}

/* Unique Left-Right Section */
.unique-left-right-section {
  background-color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 50px;
}

.unique-left-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.unique-right-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.unique-right-paragraph {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Bullet Points Style */
.unique-bullet-points {
  list-style-type: none;
  padding-left: 20px;
}

.unique-bullet-points li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .unique-left-right-section .row {
    flex-direction: column;
    text-align: center;
  }

  .unique-left-image {
    margin-bottom: 20px;
  }

  .unique-right-heading {
    font-size: 2rem;
  }

  .unique-right-paragraph {
    font-size: 1rem;
  }

  /* Align bullet points to the start in small screen sizes */
  .unique-bullet-points {
    padding-left: 15px;
    margin-left: 0;
  }
  
  .unique-bullet-points li {
    text-align: left;
  }
}
/* Unique Why Choose Us Section */
.unique-why-choose-us-section {
  background-color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 50px;
}

.unique-choose-image {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.unique-choose-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.unique-choose-paragraph {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

/* List Item Wrapper and Styling */
.unique-list-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.unique-list-item {
  display: flex;
  align-items: center;
  background-color: white; /* White background for list item */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px; /* Margin between list items */
  transition: transform 0.3s ease-in-out;
}
.unique-list-item {
  display: flex;
  align-items: center;
  background-color: white; /* White background for list item */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 15px; /* Margin between list items */
  transition: transform 0.3s ease-in-out;
}

.unique-list-item:hover {
  transform: translateY(-5px); /* Slight hover effect */
}

.unique-list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.unique-list-item img {
  width: 40px;
  height: 40px;
}

.unique-list-item {
  font-size: 1rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 576px) {
  .unique-why-choose-us-section .row-1 {
    flex-direction: column;
    text-align: center;
  }

  .unique-choose-image {
    margin-bottom: 20px;
  }

  .unique-choose-heading {
    font-size: 2rem;
  }

  .unique-choose-paragraph {
    font-size: 0.9rem;
  }

  /* Adjust image size on mobile */
  .unique-list-icon {
    width: 25px;
    height: 25px;
  }

  .unique-list-item {
    font-size: 0.9rem;
  }
}
/* Unique How We Do It Section */
.unique-how-we-do-it {
  background-color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Section Heading */
.unique-how-we-do-it-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D12124;
}

/* Column Styling */
.unique-column {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px; /* Add spacing between columns */
}

/* Number Box - Circle */
.unique-number-box {
  background-color: #F4C2DB; /* Slight orange background */
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Circle */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.unique-number {
  font-size: 2rem;
  font-weight: bold;
  color: #D12124; /* Brown color for the number */
}

/* Column Heading */
.unique-column-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Column List Items */
.unique-column-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.unique-column-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 576px) {
  /* Center the content and remove the margins for small devices */
  .row-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .unique-how-we-do-it-heading {
    font-size: 2rem;
  }

  .unique-column {
    width: 100%;
    margin-bottom: 30px; /* Space between columns */
  }

  .unique-column-list li {
    font-size: 0.9rem;
  }
}

/* Cloud-Native Page Styles */
.cloud-native-centered {
  color: #333; /* Dark text for contrast */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-native-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D12124; /* Brownish heading color */
}

.cloud-native-paragraph {
  font-size: 1rem;
  color: #555; /* Soft gray paragraph text */
  line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cloud-native-heading {
    font-size: 2rem;
  }

  .cloud-native-paragraph {
    font-size: 1rem;
  }
}


/* Expertise Section */
.expertise-section {
  background: #f8f9fa; /* Light background */
  color: #333; /* Dark text */
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #D12124; /* Heading color */
}

/* Expertise Card Styles */
.expertise-card {
  background: #fff;
  border: 1px solid #000; /* 1px solid black border */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between; /* Ensure equal height for cards */
}

.expertise-card-img {
  margin-bottom: 20px;
  padding: 2px;
}

.expertise-card-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.expertise-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.expertise-card-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .col-md-6 {
    margin-bottom: 30px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .expertise-card-title {
    font-size: 1.25rem;
  }

  .expertise-card-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .col-md-6 {
    margin-bottom: 30px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .expertise-card-title {
    font-size: 1.1rem;
  }

  .expertise-card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  

  .section-heading {
    font-size: 1.5rem;
  }

  .expertise-card-title {
    font-size: 1rem;
  }

  .expertise-card-description {
    font-size: 0.85rem;
  }
}
/* DevOps Large Page Section */
.devops-large-page {
  background: #f4f7fa;  /* Light background for contrast */
  color: #333;  /* Dark text for readability */
  padding: 50px 0;
}

/* Heading styling */
.cloud-native-heading {
  color: #D12124;  /* Highlight color for the heading */
}

/* Paragraph Text Styling */
p {
  font-size: 1rem;
  color: #000; /* Slightly lighter color for the paragraph */
  line-height: 1.9;
}


/* Section Heading and Description */
.quality-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.quality-description {
  font-size: 1rem;
  color: #666;
}

/* Icons Container */
.icons-scroll-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between icons */
  padding: 20px 0;
}

.icon-item {
  text-align: center;
  width: 150px; /* Set width for each icon */
  transition: transform 0.3s ease-in-out;
  margin-bottom: 10px; /* Add margin for spacing between rows */
}

.icon-circle {
  width: 150px; /* Increased width */
  height: 150px; /* Increased height */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testing-icon {
  width: 80px; /* Increased size */
  height: 80px; /* Increased size */
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.testing-icon img{
  height: 150px;
  width: 150px;
}

/* Hover effect on icons */
.icon-item:hover .testing-icon {
  filter: grayscale(0%); /* Restore original color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Responsive Design */
@media (max-width: 768px) {
  .icon-item {
    width: 120px; /* Adjust width for mobile devices */
  }

  .testing-icon {
    width: 60px; /* Adjust icon size for mobile */
    height: 60px; /* Adjust icon size for mobile */
  }
}

@media (max-width: 576px) {
  .icons-scroll-container {
    align-items: center; /* Center the icons */
  }

  .icon-item {
    width: 100px; /* Adjust width for smaller screens */
    margin-bottom: 15px; /* Less space between icons */
  }

  .testing-icon {
    width: 50px; /* Adjust icon size for smaller screens */
    height: 50px; /* Adjust icon size for smaller screens */
  }
}



/* Icon Labels Styling */
.icon-label {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
  .icon-item {
    width: 100px;
  }

  .testing-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .icons-scroll-container {
    padding: 10px 0;
  }
}
/* Footer Logo Styling */
.footer-logo {
  max-height: 40px; /* Adjust as needed */
  width: auto; /* Maintain aspect ratio */
  margin-bottom: 10px;
}
/* Main container for IT Governance content */
.it-governance-container {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
}

/* Main Heading Style */
.it-governance-main-heading {
  font-size: 36px;
  color: #D12124; /* Color for the heading */
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Paragraph Below Main Heading */
.it-governance-main-paragraph {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* Service Section Flex Layout */
.it-governance-service-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Individual Service Box */
.it-governance-service-box {
  width: 48%;  /* Set width to 48% to have two items per row */
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for service box */
.it-governance-service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Service Heading Style */
.it-governance-service-heading {
  font-size: 24px;
  color: #D12124;  /* Heading color */
  margin-bottom: 15px;
  font-weight: bold;
}

/* Text within Service Boxes */
.it-governance-service-text-container {
  font-size: 14px;
  color: #555;
}

.it-governance-service-text {
  margin: 10px 0;
}

/* Bullet Icon Style */
.bi-caret-right-fill {
  color: #D12124;
  font-size: 18px;
  margin-right: 8px;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .it-governance-service-box {
    width: 100%;  /* Full width on small screens */
  }
}
.blog-introduction {
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #D12124; /* Highlight with a border */
  margin-bottom: 20px;
  border-radius: 5px;
}

.intro-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.intro-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #888;
}