/*----------------------------------------
 0.  CSS COLORS
----------------------------------------*/

:root {
  --primary-color: #577cd1;
  --secondary-color: white;
  --third-color: #c39595;
}

/*----------------------------------------
    1.  MAIN CSS
  ----------------------------------------*/

html,
body {
  height: 100%;
}

a:focus {
  outline: 0px solid;
}

img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

p {
  margin: 0 0 15px;
  color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  margin: 0 0 15px;
  color: #444;
  font-weight: 500;
}

h1 {
  font-size: 48px;
  line-height: 50px;
}

h2 {
  font-size: 38px;
  line-height: 40px;
}

h3 {
  font-size: 30px;
  line-height: 32px;
}

h4 {
  font-size: 24px;
  line-height: 26px;
}

h5 {
  font-size: 20px;
  line-height: 22px;
}

h6 {
  font-size: 16px;
  line-height: 20px;
}

a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

a:hover {
  color: #3ec1d5;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
}

.tonyred h2 span {
  color: #c82b2b;
  font-weight: 900;
}

body {
  background: #fff none repeat scroll 0 0;
  color: #444;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: white;
  color: var(--primary-color);
  border-width: medium;
  border-color: var(--primary-color);
  outline: none;
}

.back-to-top:hover {
  background: white;
  color: var(--primary-color);
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary-color);
  outline: none;
}

.clear {
  clear: both;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
input[type="text"],
input[type="date"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="tel"],
button,
button[type="submit"] {
  appearance: none;
  box-shadow: none !important;
}


/* Our Team */
.experience-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-headline {
  margin-bottom: 10px;
}

.section-headline h2 {
  font-size: 36px;
  color: #333;
}

.section-headline h5 {
  font-size: 18px;
  color: #666;
  margin-top: 15px;
}

.experience-list {
  margin-top: 30px;
}

.experience-item {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.experience-item h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.experience-item h3:hover{
  /* text-decoration-color: goldenrod; */
  font-size: 30px;
  transition: 2s;
}

.experience-item p{
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  color: #666;
  border-bottom: none;
}
/* 
.experience-item h5{
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.experience-item h5:last-child {
  border-bottom: none;
} */

@media (max-width: 768px) {
  .experience-item {
      margin-bottom: 20px;
  }
}



/* 
.team{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  border-radius: 20px;
  margin: 20px auto;
  min-height: 80vh;
  background: #EEEEEE;
  font-family: "Poppins", sans-serif;
}
.team_wrapper{
  background: #fff;
  max-width: 50vw;
  margin-right: 20px;
  width: 100vw;
  max-height: 80vh;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.team>h1{
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.team>h2{
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.team-section{
  display: flex;
  margin: 0 auto;
}

.team_section>img{
  margin: 0px auto;
  width: 200px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.4);
}

.team_section>p{
  margin: 10px;
} */


/* .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
}
.person-container {
  display: flex;
  height: 312px;
  width: 400px;
  cursor: pointer;
  transform: scale(0.48);
  transition: transform 250ms 
    cubic-bezier(0.4, 0, 0.2, 1);
}
.circle {
  position: absolute;
  background: var(--color);
  height: 380px;
  width: 380px;
  top: 210px;
  left: 10px;
  border-radius: 50%;
}
.person img {
  position: relative;
  width: 340px;
  top: 164px;
  left: 22px;
  transform: translateY(20px) scale(1.15);
  transition: transform 250ms 
    cubic-bezier(0.4, 0, 0.2, 1);
}
.conianer-inner {
  position: relative;
  clip-path: path("M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z");
  top: -200px;
}
.divider {
  height: 3px;
  width: 130px;
  border-radius: 5px;
  background: var(--color);
}
.person h1 {
  color: #464646;
  margin: 16px 0 0 0;
}
.person p {
  font-family: arial;
  color: #6e6e6e;
  font-size: 14px;
  margin-top: 5px;
} */
/* hover */
/* .container:hover {
  transform: scale(0.54);
} 
.container:hover img {
  transform: translateY(0) scale(1.3);
} */



/* selection of text and items */
::selection {
  background: var(--third-color);
  text-shadow: none;
}

.area-padding {
  padding: 70px 0px 80px;
}

.area-padding-2 {
  padding: 70px 0px 50px;
}

.padding-2 {
  padding-bottom: 90px;
}

.section-headline {
  margin-bottom: 50px;
}

.section-headline h2 {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 70px;
  position: relative;
  text-transform: capitalize;
  color: #000;
}

.section-headline h2::after {
  border: 1px solid #333;
  bottom: -5px;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 60%;
}

.section-headline p {
  font-size: 16px;
  width: 70%;
  margin: auto;
}

.sec-head {
  display: inline-block;
  font-size: 3vh;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0 0 10px;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
}

/*--------------------------------
   2. HEADER
  --------------------------------*/

/* Menu in the initial layout is transparent */
.main-menu .dropdown > a {
  display: inline-block; 
  padding-right: 10px;   
  white-space: nowrap;  
}

.main-menu .dropdown-toggle {
  display: inline-block; 
  padding-left: 2px;     
  vertical-align: middle;
}

.main-menu .dropdown-toggle .caret {
  margin-left: 5px; 
  vertical-align: middle; 
}

.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: none;
  z-index: 9;
}

.navbar-header a.navbar-brand {
  display: inline-block;
  height: 70px;
  padding: 15px 0;
}

.main-menu ul.navbar-nav li {
  display: inline-block;
  padding: 0px 13px;
}

.main-menu ul.navbar-nav li a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 24px 0px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.main-menu ul.navbar-nav li.active > a::after {
  border: 1px solid #fff;
  bottom: 0px;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.main-menu ul.navbar-nav li.active a:hover {
  background: none;
  color: #fff;
}

.main-menu ul.navbar-nav li.active a:focus {
  color: #fff;
}

.main-menu ul.navbar-nav li.active a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #fff;
  position: relative;
}

.main-menu ul.navbar-nav li a:hover {
  color: var(--primary-color);
  font-weight: bolder;
}

.navbar {
  border: medium none;
  margin-bottom: 0;
}

.navbar-default {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.main-menu ul.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background: none;
  color: #333;
}

.navbar-default .navbar-toggle {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  padding: 25px 0px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  background-color: transparent;
  color: #fff;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: none;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
  width: 30px;
  height: 2px;
}

.top-right.text-right {
  float: right;
  position: relative;
  top: 24px;
  margin-left: 20px;
}

.top-right.text-right > li {
  float: right;
  margin: 0px 8px;
}

.top-right.text-right li a {
  color: #fff;
}

.main-menu .dropdown ul {
  background: #000;
}

.main-menu .dropdown ul li {
  display: block;
}

/*--------------------------------
  2.1.  NAVIGATION BAR
  --------------------------------*/

.header-area {
  background-color: var(--primary-color);
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.scrolled {
  background-color: var(--primary-color);
  /* Use your theme's color */
}

.navbar-header a.navbar-brand {
  display: inline-block;
  height: 90px;
}

.navbar-brand > img {
  display: none;
}

.navbar-brand.logo > img {
  display: block;
}

.logo h1 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}

.logo h1 span {
  color: #c82b2b;
}

.main-menu ul.navbar-nav li.active > a::after {
  border: 1px solid #fff;
  bottom: 0px;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.main-menu ul.nav > li > a:hover {
  color: #fff;
}

.main-menu ul.navbar-nav li.active a {
  background: rgba(148, 118, 118, 0) none repeat scroll 0 0;
  color: #fff;
  position: relative;
}

/*--------------------------------
  2.1.  About Us
--------------------------------*/
.section-title {
  margin-top: 80px; /* Reduced top margin for better alignment */
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem; /* Slightly smaller for better fit */
  font-weight: 600;
  margin-bottom: 20px; /* Reduced bottom margin */
  color: #333;
  text-align: center; /* Centering the title */
}

.about-section p {
  font-size: 1.4rem; /* Slightly smaller text */
  line-height: 1.7;
  color: #555;
  text-align: center; /* Centered paragraph text */
  max-width: 800px; /* Limiting width for readability */
  margin: 0 auto; /* Centering block */
}

.vision-mission-section .nav-tabs .nav-link {
  color: #007bff;
  font-weight: 500;
  transition: background-color 0.3s; /* Smooth transition for active state */
}

.vision-mission-section .nav-tabs .nav-link.active {
  background-color: #007bff;
  color: #fff;
}

.tab-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px; /* Space below paragraphs */
}

.core-values-section {
  background-color: #f8f9fa; /* Light background for contrast */
  padding: 40px 0; /* Padding for section */
}

.core-value-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px; /* Increased corner radius */
  text-align: center;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Added transform for hover */
}

.core-value-box:hover {
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
  transform: translateY(-5px); /* Lift effect on hover */
}

.core-value-box i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.core-value-box h4 {
  font-size: 1.6rem; /* Increased size for better visibility */
  margin-bottom: 15px;
  font-weight: 600;
}

.services-list {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  padding-left: 0;
  list-style: none; /* Removing default list style */
}

.services-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px; /* Adjusted for icon alignment */
}

.services-list li:before {
  content: "\f00c"; /* Font Awesome check mark */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #007bff;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem; /* Smaller title on mobile */
  }

  .core-value-box i {
    font-size: 2rem; /* Adjust icon size */
  }

  .about-section p {
    font-size: 1.2rem; /* Adjust paragraph text size */
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem; /* Further reduce title size */
  }

  .core-value-box {
    padding: 20px; /* Reduce padding on smaller screens */
  }

  .core-value-box i {
    font-size: 1.8rem; /* Adjust icon size */
  }

  .about-section p {
    font-size: 1rem; /* Adjust paragraph text size */
  }
}

/*--------------------------------
  2.1.  Our Mission and Vision
  --------------------------------*/

.single-well > a {
  display: block;
}

.single-well ul li {
  color: #444;
  display: block;
  padding: 5px 0;
}

.single-well ul li i {
  color: #3ec1d5;
  padding-right: 10px;
  font-size: 12px;
}

.single-well p {
  color: #444;
}

.single-well ul li i {
  color: var(--primary-color);
}

.single-well img {
  padding-bottom: 20px;
  height: 450px;
  width: 100%;
  border-radius: 80px 0px 80px 0px;
}

.tab-menu .nav-tabs > li > a:hover {
  border-color: #ddd;
  color: var(--primary-color);
}

.tab-menu {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.tab-menu ul.nav {
  margin: 0;
  padding: 0;
}

.tab-menu ul.nav li {
  border: none;
  display: inline-block;
}

.tab-menu ul.nav li a {
  background: transparent;
  border-radius: 5px;
  color: #444;
  display: block;
  font-weight: 500;
  margin-right: 5px;
  padding: 10px 20px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  transition: all 0.3s ease;
}

.tab-menu ul.nav li a:hover {
  background-color: var(--primary-color);
  color: white;
}

.tab-menu ul li.active a {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.tab-content {
  /* border: 1px solid #ccc; */
  padding: 15px;
  border-radius: 8px;
  /* background-image: linear-gradient(to right, #eea2a2 0%, #bbc1bf 19%, #57c6e1 42%, #b49fda 79%, #7ac5d8 100%); */
  /* background-color: #fff; */
}

.tab-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

.tab-main-img a {
  position: relative;
  display: block;
}

.tab-main-img a:hover span.events-offer {
  height: 20%;
  transition: height 0.3s ease;
}

/*--------------------------------
  2.1.  Mission and Values
  --------------------------------*/
.mission-area {
  place-content: center;
  /* text-align: center; */
  padding: 60px 0;
  /* Padding for top and bottom */
  background-color: #fff;
  /* White background for contrast */
}

.mission-content {
  /* place-content: center; */
 /* width: 90vw; */
 background-image: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%);
 /* background-image: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%); */
 /* background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); */
  /* background: linear-gradient(
    to right,
    rgba(0, 123, 255, 0.5),
    rgba(173, 216, 230, 0.7)
  ); */
  /* Primary color to a light blue gradient */
  padding: 40px;
  /* Increased padding inside the content area */
  border-radius: 10px;
  /* Rounded corners */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  /* Enhanced shadow for depth */
  margin-top: 30px;
  /* Margin at the top */
  transition: all 0.3s ease;
  /* Transition for hover effect */
}

.mission-content h4 {
  font-size: 26px;
  /* Font size for section headings */
  margin-top: 20px;
  /* Margin above the headings */
  margin-bottom: 15px;
  /* Margin below the headings */
  color: var(--primary-color);
  /* Heading color */
  font-weight: bold;
  /* Bold text for emphasis */
}

.mission-content p {
  font-size: 16px;
  /* Font size for paragraphs */
  color: #333;
  /* Text color */
  line-height: 1.8;
  /* Increased line height for readability */
  /* width: 70%; */
  margin: auto;
  text-align: center;
}

.values-list {
  display: flex;
  /* Flexbox for layout */
  flex-wrap: wrap;
  /* Allow wrapping */
  margin-top: 20px;
  /* Margin above the list */
  justify-content: space-between;
  /* Space between items */
}

.value-item {
  flex: 1 1 calc(45% - 20px);
  /* flex: 1 1 calc(50% - 50px); */
  /* Flex items with fixed width */
  display: flex;
  /* Flexbox for items */
  align-items: center;
  /* Center items vertically */
  margin: 10px;
  /* Margin around each item */
  padding: 15px;
  /* Padding inside each item */
  background-color: #fff;
  /* White background for each value */
  border: 2px solid hsl(222, 55%, 57%);
  /* Border color */
  border-radius: 8px;
  /* Rounded corners */
  transition: all 0.3s ease;
  /* Transition for hover effect */
}

.value-icon {
  font-size: 30px;
  /* Icon size */
  margin-right: 15px;
  /* Margin to the right of the icon */
  color: hsl(222, 55%, 57%);
  /* Icon color */
  transition: color 0.3s ease;
  /* Transition for icon color */
}

.value-item p {
  margin: 0;
  /* Remove default margin */
  font-size: 16px;
  /* Font size for list items */
  text-align: left;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .value-item {
    flex: 1 1 100%;
    /* Full width for smaller screens */
    margin: 10px 0;
  }

  .mission-content p {
    width: 100%;
    /* Adjust paragraph width on small screens */
  }
}

/*--------------------------------
  14. Disclaimer
/*--------------------------------*/
.disclaimer-section {
  background-color: #f8f9fa; /* Light background for contrast */
  padding: 40px; /* Generous padding for a spacious feel */
  border-radius: 12px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  max-width: 1200px; /* Limit width for readability */
  margin: 40px auto; /* Centered with margin */
}

.disclaimer-header {
  text-align: center; /* Centering header content */
  margin-bottom: 30px; /* Space below header */
}

.disclaimer-header h2 {
  font-family: "Poppins", sans-serif; /* Modern font */
  font-size: 42px; /* Large font size */
  color: #333; /* Dark color for text */
  margin: 0; /* Remove default margin */
}

.disclaimer-header p {
  font-size: 14px; /* Slightly smaller font for location */
  color: #555; /* Gray color for contrast */
  margin: 5px 0; /* Space around text */
}

h3 {
  font-family: "Poppins", sans-serif; /* Consistent font */
  font-size: 32px; /* Large size for the heading */
  color: var(--primary-color); /* Primary color for emphasis */
  text-align: center; /* Centering heading */
  margin: 20px 0; /* Space around heading */
}

.disclaimer-content {
  font-size: 16px; /* Readable font size */
  color: #555; /* Gray text for legibility */
  line-height: 1.6; /* Spacing between lines */
  margin-top: 20px; /* Space above content */
}

.disclaimer-content p {
  margin-bottom: 15px; /* Space between paragraphs */
}

/* Responsive Styling */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 20px; /* Reduced padding for smaller screens */
    margin: 20px;
  }
  
  .disclaimer-header{
    margin: 0px;
  }

  .disclaimer-section h3{
    font-size: 24px;
  }

  .disclaimer-header h2 {
    font-size: 2rem; /* Smaller title on mobile */
  }

  h3 {
    font-size: 1.8rem; /* Smaller heading on mobile */
  }

  .disclaimer-content {
    font-size: 1rem; /* Smaller font for content */
  }

  .disclaimer-content p{
    font-size: 12px;
  }
}

/*--------------------------------
  14. CONTACTOS
/*--------------------------------*/
.about-hero {
  margin-top: 70px;
  position: relative;
  height: 50vh;
  background-image: url("../img/about/1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.about-heading {
  position: relative;
  z-index: 2;
  font-size: 48px;
  color: white;
  font-weight: bolder;
  margin: 0;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  background-color: transparent;
}

.breadcrumb li {
  margin: 0 5px;
}

.breadcrumb a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}

.about-row {
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* Ensure both columns stretch to the same height */
  justify-content: space-between;
  /* Space between columns */
}

.about-content {
  flex: 0 0 50%;
  /* More space for content */
  padding: 15px;
  /* Reduced padding */
  background: #ffffff;
  /* White background for contrast */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item {
  display: flex;
  margin-bottom: 10px;
  /* Reduced margin for service items */
}

.about-image {
  flex: 0 0 45%;
  /* Less space for image */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 500px;
  /* Set a specific height for the image section */
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  /* Ensure wrapper takes full height */
  overflow: hidden;
  border-radius: 8px;
  /* Rounding the corners */
  border: 1px solid black;
}

.about-image img {
  width: 100%;
  height: 100%;
  /* Make the image cover the entire wrapper */
  object-fit: cover;
  /* Maintain aspect ratio and cover the container */
  transition: transform 0.3s;
  /* Smooth transition */
  position: absolute;
  /* Positioning the image absolutely */
  top: 0;
  left: 0;
}

.about-image img:hover {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
}

.text-primary {
  color: var(--primary-color);
}

.contact-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 18px;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .container{
    margin: 10px;
  }
  .about-content h1{
    font-size: 24px;
    font-weight: bold;
  }
  .about-content h4{
    font-size: 20px;
  }
  .about-row{
    margin: 10px;
  }
  .about-hero{
    margin-top: 60px;
  }
  .about-heading {
    font-size: 28px;
  }
  #about{
    padding: 20px;
  }
  #about h2, #services h2, #mission h2{
    margin-bottom: 20px;
  }
  #about p, #services p, #mission p{
    width: 100%;
    font-size: 14px;
  }
 
}

/*--------------------------------
  14. About Us Services
  /*--------------------------------*/
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-content {
  width: 300px;
  /* Set a fixed width for each service item */
  height: 250px;
  background-color: #f9f9f9;
  /* Background color for each service item */
  border: 1px solid hsl(222, 55%, 57%);
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
  text-align: center;
  /* Center-align text */
  transition: all 0.3s ease;
  position: relative;
  /* For hover effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: add shadow */
}

.service-content:hover {
  transform: translateY(-5px);
  /* Lift effect on hover */
  background-color: hsl(222, 55%, 57%);
  /* Change background color on hover */
  cursor: pointer;
}

.services-icon {
  color: hsl(222, 55%, 57%);
  /* Change icon color */
  font-size: 36px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  /* Smooth color transition */
}

.service-content:hover .services-icon,
.service-content:hover h4,
.service-content:hover p {
  color: #fff;
  /* Change icon and text color to white on hover */
}

.service-content h4 {
  font-size: 20px;
  margin: 10px 0;
  /* Margin adjustments */
}

.service-content p {
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 0 10px;
  /* Padding for text */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-content {
    flex: 1 0 45%;
    /* 2 items per row on medium devices */
  }
}

@media (max-width: 576px) {
  .service-content {
    flex: 1 0 100%;
    /* 1 item per row on small devices */
    margin: auto;
  }
  .services-grid{
    gap: 20px;
  }
  .section-headline{
    margin-bottom: 10px;
  }
  .mission-content{
    padding: 10px;
  }
  .mission-content p{
    font-size: 14px;
  }
}

/*----------------------------------------
  15. FOOTER
  ----------------------------------------*/

.footer-area {
  margin-left: 10px;
  padding: 40px 0;
  background: #f9f9f9;
}

.footer-head p {
  color: #444;
}

.footer-head h4 {
  color: #444;
  font-size: 16px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.footer-head a {
  color: #444;
  display: block;
  padding-bottom: 15px;
}

.footer-head a:hover {
  color: var(--primary-color);
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-logo h2 {
  color: #222;
  padding: 0;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  font-weight: 900;
}

.footer-logo h2 span {
  color: rgb(200, 43, 43);
  font-weight: 900;
}

.footer-icons ul li {
  display: inline-block;
}

.footer-icons ul li a {
  border: 1px solid #444;
  color: #444;
  display: block;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
  border-radius: 50%;
}

.footer-icons {
  margin-top: 30px;
}

.footer-contacts p span {
  color: var(--primary-color);
  font-weight: 700;
}

.footer-content {
  display: block;
  overflow: hidden;
}

.footer-icons ul li a:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

.footer-area-bottom {
  background: #f1f1f1 none repeat scroll 0 0;
  padding: 15px 0;
}

.copyright-text a {
  color: #444;
}

.copyright > p {
  margin-bottom: 0;
  color: #444;
}

/*----------------------------------------
   .End CSS
  ----------------------------------------*/

/* 
  .r1 {
    position: absolfute;
    width: 80vw;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  .ca {
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #21242b;
    border-bottom: 10px solid #18f98f;
  }
  .ca i{
    color: #18f98f;
    font-size: 2.5em;
    text-align: center;
  }
  .nn {
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
  }
  .tt {
    color: #e0e0e0;
    font-size: 1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
  }
  @media screen and (max-width: 1024px) {
    .r1 {
      width: 85vw;
    }
    .ca {
      height: 26vmin;
      width: 26vmin;
      font-size: 12px;
    }
  }
  @media screen and (max-width: 768px) {
    .r1 {
      width: 90vw;
      flex-wrap: wrap;
      gap: 30px;
    }
    .ca {
      width: calc(50% - 40px);
      height: 30vmin;
      font-size: 14px;
    }
  }
  @media screen and (max-width: 480px) {
    .r1 {
      gap: 15px;
    }
    .ca {
      width: 100%;
      height: 25vmin;
      font-size: 8px;
    }
  } */
