/**
* Template Name: iPortfolio
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body { /* this is a code for the body */
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a { /* this is a code for the link */
  color: #149ddd;
  text-decoration: none;
}

a:hover { /* this is a code for the link when the mouse is on it */
  color: #37b3ed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 { /* this is a code for the header */
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top { /* this is a code for the back to top button */
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i { /* this is a code for the back to top button icon */
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover { /* this is a code for the back to top button when the mouse is on it */
  background: #2eafec;
  color: #fff;
}

.back-to-top.active { /* this is a code for the back to top button when it is active */
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header { /* this is a code for the header */
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}

#header .profile img { /* this is a code for the profile image */
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}

#header .profile h1 { /* this is a code for the profile name */
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a, /* this is a code for the profile name link */
#header .profile h1 a:hover { /* this is a code for the profile name link when the mouse is on it */
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a { /* this is a code for the social links */
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover { /* this is a code for the social links when the mouse is on it */
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main { /* this is a code for the main */
  margin-left: 300px;
}

@media (max-width: 1199px) { /* this is a code for the media when the screen is 1199px or less */
  #header {
    left: -300px;
  }

  #main { /* this is a code for the main */
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu { /* this is a code for the navigation menu */
  padding: 30px 0 0 0;
}

.nav-menu * { /* this is a code for the navigation menu */
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li { /* this is a code for the navigation menu that is a list */
  position: relative;
  white-space: nowrap;
}

.nav-menu a, /* this is a code for the navigation menu link */
.nav-menu a:focus { /* this is a code for the navigation menu link when it is focused */
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i, /* this is a code for the navigation menu link icon */
.nav-menu a:focus i { /* this is a code for the navigation menu link icon when it is focused */
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover, /* this is a code for the navigation menu link when the mouse is on it */
.nav-menu .active, /* this is a code for the navigation menu link when it is active */
.nav-menu .active:focus, /* this is a code for the navigation menu link when it is active and focused */
.nav-menu li:hover>a { /* this is a code for the navigation menu link when the mouse is on it */
  text-decoration: none;
  color: #fff;
}

.nav-menu a:hover i, /* this is a code for the navigation menu link icon when the mouse is on it */
.nav-menu .active i, /* this is a code for the navigation menu link icon when it is active */
.nav-menu .active:focus i, /* this is a code for the navigation menu link icon when it is active and focused */
.nav-menu li:hover>a i { /* this is a code for the navigation menu link icon when the mouse is on it */
  color: #149ddd; 
}

/* Mobile Navigation */
.mobile-nav-toggle { /* this is a code for the mobile navigation toggle */
  position: fixed; 
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active { /* this is a code for the mobile navigation when it is active */
  overflow: hidden;
}

.mobile-nav-active #header { /* this is a code for the mobile navigation when it is active and the header */
  left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero { /* this is a code for the hero */
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.webp") top center;
  background-size: cover;
}

#hero:before { /* this is a code for the hero before which is the background */
  content: "";
  background: rgba(5, 13, 24, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container { /* this is a code for the hero container */
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 { /* this is a code for the hero h1 */
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 { /* this is a code for the hero h2 */
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p { /* this is a code for the hero p */
  color: #fff;
  margin-bottom: 10px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span { /* this is a code for the hero p span which defines the color of the span */
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #149ddd;
}

@media (min-width: 1024px) { /* this is a code for the hero when the screen is 1024px or more */
  #hero {
    background-attachment: fixed; 
  }
}

@media (max-width: 768px) { /* this is a code for the hero when the screen is 768px or less */
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 { /* this is a code for the hero h2 */
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section { /* this is a code for the section */
  padding: 60px 0;
  overflow: hidden;
}

.section-bg { /* this is a code for the section background */
  background: #f5f8fd;
}

.section-title { /* this is a code for the section title */
  padding-bottom: 30px;
}

.section-title h2 { /* this is a code for the section title h2 */
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after { /* this is a code for the section title h2 after that sepicifes the color of the line */
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

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

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box { /* this is a code for the box */
  padding: 30px;
  width: 100%;
}

.facts .count-box i { /* this is a code for the icon */
  display: block;
  font-size: 44px;
  color: #149ddd;
  float: left;
  line-height: 0;
}

.facts .count-box span { /* this is a code for the number */
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p { /* this is a code for the text */
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a { /* this is a code for the link */
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover { /* this is a code for the link hover */
  color: #1f5297;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress { /* this is a code for the progress bar */
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill { /* this is a code for the skill */
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.skills .progress .skill .val { /* this is a code for the value of the skill */
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap { /* this is a code for the progress bar wrap which is the background of the progress bar */
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar { /* this is a code for the progress bar */
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #37b3ed;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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

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

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

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #149ddd;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #149ddd;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #149ddd;
}

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

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #149ddd;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Contact Section - Updated Styling (Two Boxes, Consistent Icons)
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

/* Styling for BOTH info boxes on the left */
.contact .info-box {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  width: 100%; /* Ensure boxes take full column width */
}

/* Use flex column on the parent col to stack boxes and add gap */
#contact .col-lg-5.d-flex.flex-column {
    gap: 30px; /* Adjust the space between the two boxes */
}

/* Styling specific to items WITHIN the info boxes */
.contact .info-item {
  width: 100%;
}

/* --- Icon Styling (Consistent for both boxes) --- */

/* Base style for Location, Email, Website Icons */
.contact .info-item i {
  font-size: 20px;
  color: #149ddd;      /* Icon Color */
  background: #dff3fc;  /* Background Circle */
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;   /* Shape */
  transition: all 0.3s ease-in-out;
  margin-right: 15px; /* Space between icon and text */
}

/* Base style for Social Media Icons */
.contact .social-icon-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #149ddd;      /* Icon Color - MATCHES */
  background: #dff3fc;  /* Background Circle - MATCHES */
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;   /* Shape - MATCHES */
  transition: all 0.3s ease-in-out; /* Transition - MATCHES */
  text-decoration: none !important;
}
/* Ensure icon within the link aligns properly */
.contact .social-icon-link i {
  line-height: 1;
  /* Prevent inheriting unwanted styles if any */
  background: none;
  color: inherit; /* Takes color from the parent 'a' tag */
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: inherit; /* Takes size from the parent 'a' tag */
}

/* Hover effect for Location, Email, Website Icons */
.contact .info-item:hover > i {
  background: #149ddd; /* Dark Blue Background */
  color: #fff;         /* White Icon */
}

/* Hover effect for Social Media Icons */
.contact .social-icon-link:hover {
  background: #149ddd; /* Dark Blue Background - MATCHES HOVER */
  color: #fff;         /* This sets the color property FOR THE LINK, icons inherit */
}
/* Explicitly ensure the icon itself turns white on hover */
.contact .social-icon-link:hover i {
   color: #fff !important; /* White Icon - MATCHES HOVER */
}

/* --- Text Styling within Info Boxes --- */
.contact .info-box h3 { /* Applies to "Location", "Email", "Website", and "Follow Me" */
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #050d18;
}
/* Specific alignment/margin for "Follow Me" title */
.contact .info-box h3.text-center {
  margin-bottom: 20px; /* More space below "Follow Me" title */
}

.contact .info-item p { /* Paragraphs in the first box */
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  color: #444444;
}
.contact .info-item p a {
  color: #444444;
  transition: 0.3s;
}
.contact .info-item p a:hover {
 color: #149ddd;
}


/* --- Contact Form Styling (Remains mostly the same) --- */
.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  height: 100%;
}
/* Add min-height to ensure form looks decent even if left col is tall */
@media (min-width: 992px) {
  .contact .php-email-form {
     min-height: calc(100% - 30px); /* Adjust based on gap */
  }
   /* Ensure columns align nicely if heights differ */
   #contact .row.gx-lg-5 {
      align-items: stretch;
   }
   #contact .col-lg-5, #contact .col-lg-7 {
      display: flex;
      flex-direction: column;
   }
   #contact .col-lg-7 > form {
      flex-grow: 1; /* Allow form to grow */
   }
}

.contact .php-email-form .form-group { margin-bottom: 20px; }
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  border-radius: 4px; box-shadow: none; font-size: 14px;
  border: 1px solid #ced4da; padding: 10px 12px;
}
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #149ddd;
  box-shadow: 0 0 0 0.2rem rgba(20, 157, 221, 0.25);
}
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder { color: #aaa; }
.contact .php-email-form button[type=submit] {
  background: #149ddd; border: 0; padding: 10px 30px; color: #fff;
  transition: 0.4s; border-radius: 50px; font-weight: 600;
}
.contact .php-email-form button[type=submit]:hover { background: #37b3ed; }
.contact .php-email-form .loading { display: none; background: #fff; text-align: center; padding: 15px; }
.contact .php-email-form .error-message { display: none; color: #fff; background: #dc3545; text-align: left; padding: 15px; font-weight: 600; border-radius: 4px; }
.contact .php-email-form .sent-message { display: none; color: #fff; background: #198754; text-align: center; padding: 15px; font-weight: 600; border-radius: 4px; }
.contact .php-email-form .loading:before { content: ""; display: inline-block; border-radius: 50%; width: 24px; height: 24px; margin: 0 10px -6px 0; border: 3px solid #1ce783; border-top-color: #eee; animation: animate-loading 1s linear infinite; }
@keyframes animate-loading { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 8.5px;
  color: #eaebf0;
}
#footer .credits a{
  padding-top: 5px;
  text-align: center;
  font-size: 8.5px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

.wnc-cookie-banner,
.wnc-cookie-hidden,
.wnc-cookie-show,
.wnc-cookie-banner-container,
.wnc-cookie-title,
.wnc-cookie-banner p,
.wnc-cookie-link,
.wnc-cookie-buttons,
.wnc-cookie-button,
.wnc-cookie-button:hover,
.wnc-cookie-button:focus,
.wnc-cookie-button:active {
  display: none !important;
}

.social-media-row {
  width: 100%;
  justify-content: center;
  gap: 15px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Direct styling for the icons without extra circles */
.social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  background: #dff3fc; /* Single background */
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}

.social-item a i {
  font-size: 20px !important;
  color: #149ddd !important;
  line-height: 0 !important;
}

/* Updated hover effect to dark blue */
.social-item a:hover {
  background: #0e335b;
}

.social-item a:hover i {
  color: #fff !important;
}

social-item div {
  font-size: 12px;
  text-align: center;
}

/* Updated column widths for contact section */
@media (min-width: 992px) {
  #contact .col-lg-6:first-child {
    flex: 0 0 auto;
    width: 40%;
  }
  
  #contact .col-lg-6:last-child {
    flex: 0 0 auto;
    width: 60%;
  }
}