/*

Tooplate 2134 Gotto Job

https://www.tooplate.com/view/2134-gotto-job

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #5d52ba;
  --secondary-color:              #0dcaf0;
  --section-bg-color:             #f0f8ff;
  --social-icon-link-bg-color:    #7f73eb;
  --dark-color:                   #000000;
  --p-color:                      #312f2f;
  --border-color:                 #e9eaeb;

  --body-font-family:             'League Spartan', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         30px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.5px;
}

h1,
h2 {
  letter-spacing: -1.5px;
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--custom-btn-bg-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}




/*---------------------------------------
  CUSTOM TEXT BLOCK               
-----------------------------------------*/
.custom-text-block {
  background: var(--primary-color);
  padding: 80px 60px;
  height: 100%;
}

.counter-thumb {
  margin: 20px;
  margin-bottom: 0;
}

.counter-number,
.counter-text {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--dark-color);
  font-size: var(--h1-font-size);
  line-height: normal;
}

.custom-text-block .counter-number,
.custom-text-block .counter-number-text {
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 20px;
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-border-btn {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-border-btn:hover,
.cta-section .custom-border-btn:hover {
  background: var(--white-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn-wrap .custom-link {
  color: var(--white-color);
}

.custom-border-btn-wrap .custom-link:hover::after {
  background: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  padding: 12px 22px;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* Navbar Styling */
.electrical-navbar {
  background: linear-gradient(90deg, #004d99, #0086c3);
  padding: 10px 0;
  border-bottom: 2px solid #17a885;
}

/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.logo-image {
  width: 60px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
}

.logo-slogan {
  font-size: 0.85rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link.active {
  color: #17a885; /* Highlight active link with a green color */
  font-weight: bold;
}


/* Navbar Links */
.nav-link {
  color: #ffffff;
  font-size: 1rem;
  margin-left: 15px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #17a885;
}

/* Navbar Toggler Icon */
.navbar-toggler-icon {
  background-color: #ffffff;
  height: 3px;
  width: 25px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  background-color: #ffffff;
  height: 3px;
  width: 25px;
  position: absolute;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* "Get a Quote" Button Styling */
.btn-get-quote {
  background-color: #17a885;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-get-quote:hover {
  background-color: #fffdf9;
  transform: scale(1.1);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .navbar-brand {
    justify-content: center;
    text-align: center;
  }

  .logo-text {
    font-size: 1.2rem;
    text-align: center;
  }

  .logo-slogan {
    font-size: 0.75rem;
    text-align: center;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .nav-item {
    margin-left: 0;
    margin-bottom: 10px; /* Space out nav items */
  }

  .navbar-toggler {
    border: none;
  }

  .btn-get-quote {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    text-align: center;
  }
}




/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
/* ---------------------------------------
   UNIQUE HEADER DESIGN FOR ELMONSON ELECTRICAL
----------------------------------------- */
.electrical-header {
  background: linear-gradient(90deg, #0b3d91, #1a73e8, #0cce6b);
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Wrapper Layout */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  gap: 20px;
}

/* Left Section: Logo and Tagline */
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container .logo-image {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
}

.tagline h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.tagline p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0f2f1;
}

/* Center Section: Highlight Banner */
.header-center {
  text-align: center;
  flex: 1;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.highlight-text {
  font-size: 1rem;
  color: #e3f2fd;
  margin-top: 8px;
  font-style: italic;
}

/* Right Section: Call-to-Action Buttons */
.header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-button {
  background: #ff5722;
  color: white;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  background: #bf360c;
  transform: scale(1.1);
}

.secondary-button {
  background: transparent;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid #ffffff;
  border-radius: 25px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.secondary-button:hover {
  background: #ffffff;
  color: #0b3d91;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-wrapper {
      flex-direction: column;
      align-items: center;
  }

  .header-left, .header-right {
      text-align: center;
  }

  .main-title {
      font-size: 2rem;
  }

  .highlight-text {
      font-size: 0.9rem;
  }
}
/* ---------------------------------------
UNIQUE HEADER DESIGN FOR ELMONSON ELECTRICAL
----------------------------------------- */
.electrical-header {
  background: linear-gradient(90deg, #3a8bd4, #8dc2f2); /* Updated gradient background colors */
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Wrapper Layout */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  gap: 20px;
}

/* Left Section: Logo and Tagline */
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container .logo-image {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
}

.tagline h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.tagline p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0f2f1;
}

/* Center Section: Highlight Banner */
.header-center {
  text-align: center;
  flex: 1;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.highlight-text {
  font-size: 1rem;
  color: #e3f2fd;
  margin-top: 8px;
  font-style: italic;
}

/* Right Section: Contact Information */
.header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info {
  font-size: 1rem;
}

.contact-info i {
  margin-right: 10px;
}

.contact-info p {
  display: flex;
  color: #000;
  align-items: center;
  gap: 10px;
}

.contact-info p i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .header-left, .header-right {
    text-align: center;
  }

  .main-title {
    font-size: 2rem;
  }

  .highlight-text {
    font-size: 0.9rem;
  }
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/site-header/close-up-young-business-team-working.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.site-header .section-overlay {
  background: var(--primary-color);
}


/*---------------------------------------
  HERO              
-----------------------------------------*/
/*---------------------------------------
  HERO              
-----------------------------------------*/
/* Hero Section Styling */
.hero-section {
  background: linear-gradient(120deg, #3a8bd4, #8dc2f2);
 background-size: 400% 400%;
 animation: gradientMove 6s ease infinite;
 min-height: 80vh;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 text-align: center;
 overflow: hidden;
}

@keyframes gradientMove {
 0% { background-position: 0% 50%; }
 50% { background-position: 100% 50%; }
 100% { background-position: 0% 50%; }
}

/* Hero Content Styling */
.hero-title {
 font-size: 3rem;
 text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
 animation: fadeInUp 1s ease-out;
}

.hero-title .reliable {
 color: white;
}

.hero-title .highlight {
 color: #ADEFD1FF;
}

@keyframes fadeInUp {
 from {
     opacity: 0;
     transform: translateY(20px);
 }
 to {
     opacity: 1;
     transform: translateY(0);
 }
}

.hero-text {
 font-size: 1.2rem;
 color: #ffffff;
 margin-bottom: 30px;
}

.hero-image img {
 animation: float 3s ease-in-out infinite;
 border-radius: 30px;
}

@keyframes float {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-10px); }
}

/* Button Styles */
.btn {
 transition: all 0.4s ease-in-out;
 padding: 12px 30px;
 font-size: 1.1rem;
 font-weight: bold;
 border-radius: 30px; /* Rounded buttons */
 display: inline-block;
 text-transform: uppercase;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
 background-color: #20c997; /* Green color */
 color: white;
 border: none;
}

.btn-primary:hover {
 background-color: #17a885; /* Darker green on hover */
 transform: scale(1.05); /* Slight zoom-in */
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
 border: 2px solid white;
 color: white;
 background: transparent;
}

.btn-outline-light:hover {
 background: white;
 color: #20c997; /* Match primary button hover */
 transform: scale(1.05); /* Slight zoom-in */
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile-friendly Adjustments */
@media (max-width: 768px) {
 .btn {
   padding: 12px 20px; /* Smaller padding for mobile */
   font-size: 1rem; /* Adjust font size */
 }
 
 .btn-primary {
   width: 100%; /* Full-width button on mobile */
 }

 .btn-outline-light {
   width: 100%; /* Full-width button on mobile */
 }
}


/* Background Animation (Thunder Lightning) */
.background-animations {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 0;
}

/* Electric Spark Animation */
.electric-spark {
 position: absolute;
 width: 8px;
 height: 8px;
 background-color: rgba(255, 255, 255, 1);
 border-radius: 50%;
 animation: spark 0.5s infinite ease-in-out;
 box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 0, 0, 0.8);
 transform-origin: center;
}

.electric-spark:nth-child(1) {
 top: 10%;
 left: 5%;
 animation-delay: 0s;
 animation-duration: 1s;
}

.electric-spark:nth-child(2) {
 top: 30%;
 left: 20%;
 animation-delay: 0.2s;
 animation-duration: 1s;
}

.electric-spark:nth-child(3) {
 top: 50%;
 left: 50%;
 animation-delay: 0.4s;
 animation-duration: 0.8s;
}

.electric-spark:nth-child(4) {
 top: 70%;
 left: 75%;
 animation-delay: 0.6s;
 animation-duration: 1.2s;
}

.electric-spark:nth-child(5) {
 top: 80%;
 left: 90%;
 animation-delay: 0.8s;
 animation-duration: 1s;
}

/* Spark Animation Keyframes */
@keyframes spark {
 0%, 100% {
     transform: scale(1) translateX(0) translateY(0);
     opacity: 0.6;
 }
 50% {
     transform: scale(2) translateX(5px) translateY(-5px);
     opacity: 1;
 }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
 .hero-title {
     font-size: 2rem;
 }

 .hero-text {
     font-size: 1rem;
 }

 .explore-btn {
     font-size: 1rem;
     padding: 10px 20px;
 }

 .hero-image img {
     display: none;
 }
}

/* General Button Styling (Desktop and Mobile) */
.hero-section .mt-4 {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center buttons horizontally */
  gap: 20px; /* Add even spacing between buttons */
}

/* Specific Adjustment for Mobile (Optional if necessary) */
@media (max-width: 768px) {
  .hero-section .btn {
    width: auto; /* Ensure buttons retain their size */
  }
}



/*---------------------------------------
  ABOUT US           
-----------------------------------------*/
/* General Section Styling */
#about-us-section {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.header-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.header-subtitle {
  font-size: 20px;
  color: #20c997;
  margin-bottom: 30px;
}

.company-card,
.why-choose-card,
.team-member-card {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}

.company-title,
.choose-us-title,
.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #20c997;
  margin-bottom: 15px;
}

.company-description,
.team-member-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.choose-us-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.choose-us-list li {
  margin-bottom: 15px;
}

.team-member-card {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.team-member-image,
.team-group-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  max-width: 150px;
  margin-bottom: 15px;
}

.team-group-image {
  border-radius: 10px;
  max-width: 100%;
}

.team-member-name {
  font-size: 20px;
  font-weight: bold;
  color: #20c997;
  margin-bottom: 10px;
}

.team-member-role {
  font-size: 16px;
  color: #777;
  margin-bottom: 15px;
}

.team-member-card:hover {
  transform: translateY(-10px);
}

.team-member-card:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Add space between cards on mobile */
@media (max-width: 768px) {
  .company-card,
  .why-choose-card {
      margin-bottom: 30px; /* Space between cards */
  }

  /* Adjust header size */
  .header-title {
      font-size: 34px;
  }

  .company-title, .choose-us-title, .section-title {
      font-size: 26px;
  }

  .company-description, .choose-us-list, .team-member-description {
      font-size: 14px;
  }

  .team-member-card {
      margin-bottom: 30px;
  }
}

/*---------------------------------------
  SERVICES            
-----------------------------------------*/
/* Services Section Styles */
.services-section {
  padding: 50px 0;
  background: linear-gradient(120deg, #3a8bd4, #8dc2f2);
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Section Description */
.section-description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Cards */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  max-width: 250px;
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Service Icon */
.service-icon {
  font-size: 48px;
  color: #20c997;
  margin-bottom: 15px;
}

/* Service Title */
.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Service Description */
.service-description {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-cards {
      flex-direction: column;
      align-items: center;
  }

  .service-card {
      margin: 20px 0;
      max-width: 300px;
  }
}



/*---------------------------------------
  PROJECTS             
-----------------------------------------*/
/* General Styling */
.projects-section {
  padding: 70px 0;
  background-color: #2c3e50;
}

/* Title Styling */
.heat-text {
  font-size: 1rem; /* Larger, bold font for attention */
  text-align: center;
  color: #20c997;; /* Bold blue color */
  font-weight: 700; /* Extra bold */
  letter-spacing: 1px; /* Slightly spaced-out letters */
  margin-bottom: 30px;
  position: relative;
}

/* Add a subtle decorative element below the title */
.heat-text::after {
  content: ''; /* Decorative line */
  display: block;
  width: 80px; /* Line width */
  height: 4px; /* Line thickness */
  background-color: #ffffff; /* Same color as the title */
  margin: 10px auto 0; /* Spaced below the title */
  border-radius: 2px; /* Rounded edges for a modern look */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .heat-text {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .heat-text::after {
    width: 40px; /* Adjust decorative line width */
  }
}


/* Image Container Styling */
.image-container {
  width: 100%;
  max-width: 800px; /* Restrict maximum width for consistency */
  margin: 0 auto; /* Center container */
  aspect-ratio: 16 / 9; /* Ensures all images have the same aspect ratio */
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Adds a shadow for decoration */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; /* Background color for empty space */
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container without distortion */
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  border: 5px solid #ddd; /* Adds a border for decoration */
  border-radius: 10px;
}

/* Hover Effects */
.project-img:hover {
  transform: scale(1.1);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.4);
  border-color: #20c997; /* Change border color on hover */
}

/* Carousel Button Styling */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #20c997; /* Bold blue for visibility */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffffff; /* White border for contrast */
  cursor: pointer;
  z-index: 10; /* Ensure buttons are above other content */
  transition: all 0.3s ease-in-out;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #4a90e2; /* Slightly lighter blue on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Add a shadow effect */
}

.carousel-control-prev {
  left: 15px; /* Adjust position from the left */
}

.carousel-control-next {
  right: 15px; /* Adjust position from the right */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 100%;
  background-image: none;
  border: solid #ffffff; /* White arrow design */
  border-width: 0 4px 4px 0;
}

.carousel-control-prev-icon {
  transform: rotate(135deg); /* Create a left arrow */
}

.carousel-control-next-icon {
  transform: rotate(-45deg); /* Create a right arrow */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px; /* Adjust button size for smaller screens */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px; /* Adjust icon size */
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .heat-text {
      font-size: 1.4rem;
  }

  .image-container {
      max-width: 100%; /* Adjust size for smaller screens */
  }

  .project-img {
      border-radius: 10px;
  }

  .carousel-caption h5 {
      font-size: 1rem;
  }

  .carousel-caption p {
      font-size: 0.8rem;
  }
}



/*---------------------------------------
  CONTACT             
-----------------------------------------*/
.contact-section {
  background: linear-gradient(120deg, #3a8bd4, #8dc2f2);
  color: white;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.section-description {
  font-size: 1rem;
  margin-top: 10px;
}

.contact-form .form-label {
  font-size: 1rem;
  font-weight: bold;
}

.contact-form .form-control {
  padding: 15px;
  font-size: 1rem;
  border-radius: 10px;
}

.contact-form .btn {
  font-size: 1.1rem;
  padding: 10px 25px;
  border-radius: 25px;
  background: linear-gradient(120deg, #11f31c, #8dc2f2);
  color: white;
  border: none;
}

.contact-details {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
}

.contact-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.contact-description {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-info {
  list-style-type: none;
  padding: 0;
}

.contact-info li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.social-links {
  margin-top: 20px;
}

.social-icon {
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #3498db;
}

/* Media Queries for Mobile Responsiveness */

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-form .form-control {
    padding: 12px;
    font-size: 0.95rem;
  }

  .contact-form .btn {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .contact-details {
    padding: 15px;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-info li {
    font-size: 0.95rem;
  }

  .social-links {
    margin-top: 15px;
  }

  .social-icon {
    font-size: 1.3rem;
  }

  /* Stack form and contact details vertically */
  .contact-form, .contact-details {
    width: 100%;
    margin-bottom: 20px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .contact-form .form-label {
    font-size: 0.9rem;
  }

  .contact-info li {
    font-size: 0.9rem;
  }

  .contact-form .form-control {
    padding: 10px;
    font-size: 0.9rem;
  }

  .contact-form .btn {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .contact-title {
    font-size: 1.4rem;
  }

  .contact-description {
    font-size: 0.9rem;
  }

  .social-icon {
    font-size: 1.2rem;
  }
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.footer-section {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links {
  list-style-type: none;
  padding: 0;
}

.footer-links li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-contact {
  list-style-type: none;
  padding: 0;
}

.footer-contact li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icon {
  font-size: 1.5rem;
  color: white;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #3498db;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-credit {
  color: #3498db;
  text-decoration: none;
}

.footer-credit:hover {
  color: #11f31c;
  text-decoration:wavy;
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 1.1rem;
  }

  .footer-links li {
    font-size: 0.95rem;
  }

  .footer-contact li {
    font-size: 0.95rem;
  }

  .social-icon {
    font-size: 1.2rem;
  }

  .footer .container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 1rem;
  }

  .footer-links li {
    font-size: 0.9rem;
  }

  .footer-contact li {
    font-size: 0.9rem;
  }

  .social-icon {
    font-size: 1rem;
  }
}
