/*
Theme Name: HVAC
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: HVAC is specially designed product packaged for HVAC services by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
  2.4 Buttons
    - Primary Buttons
    - Button Hover Effect

3. CONTENT ELEMENTS
  - Dropdown
  - Breadcrumb
  - Pagination
  - Accordion
  - Form
  - Swiper
  - Modal Video

4. SITE STRUCTURE
  4.1 Header
  4.2 Brand Section
  4.3 About Section
  4.4 Services Section
  4.5 Project Section
  4.6 CTA Section

5. PAGES STYLE
  5.1 Projects Page
  5.2 Pricing page 
  5.3 Reviews page
    

  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color: #de1c26;
  --secondary-color: #020000;
  --black-color: #292929;
  --light-black-color: #343536;
  --dark-color: #313131;
  --body-color: #5A5A5A;
  --gray-color: #777F81;
  --light-color: #fdfdfd;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 90, 90, 90;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-dark-rgb: 41, 41, 41;
  --bs-primary-rgb: 178, 142, 113;
}

/* Fonts */
:root {
  --heading-font: "Open Sans", sans-serif;
  --body-font: "Open Sans", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

p {
  color: var(--body-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}


/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 5em;
  padding-bottom: 5em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

@media only screen and (max-width: 990px) {
  .padding-small {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  /* margin-top: 8.125em;
  margin-bottom: 8.125em; */
  margin-top: 6em;
  margin-bottom: 6em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

/* - Button Hover Effect
--------------------------------------------------------------*/
.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}


/* Breadcrumb
------------------------------------------------------------- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}


/* Pagination
------------------------------------------------------------- */
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/* Accordion
------------------------------------------------------------- */
.accordion {
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-color);
}


/* Modal Video
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}



/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
a.nav-link {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.9s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.9s;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}

@media only screen and (max-width: 990px) {
  a.nav-link {
    font-size: 1.5rem;
  }

  a.nav-link.active::after,
  a.nav-link:focus::after,
  a.nav-link:hover::after {
    width: 0%;
  }

  a.nav-link.active,
  a.nav-link:focus,
  a.nav-link:hover {
    color: var(--primary-color) !important;
  }
}


/* 4.2 Brand Section
/*----------------------------------------------*/
img.brand-image {
  /* filter: contrast(0); */
  width: 250px;
  transition: all 0.3s ease-in;
}

img.brand-image:hover {
  filter: contrast(1);
}


/* 4.3 About Section 
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }
}



/* 4.4 Services Section
/*----------------------------------------------*/
/* Jarallax */
.jarallax {
  min-height: 350px;
  transition: all 0.5s ease-in-out;
}

.service-block {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .jarallax {
  opacity: 0;
}

.service-btn {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .service-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


/* 4.5 Project Section
/*----------------------------------------------*/
.swiper-slide.swiper-width {
  width: auto !important;
}

.project-content .portfolio-img {
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-img {
  opacity: 0.3;
}

.portfolio-description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-description {
  opacity: 1;
}



/* 4.6 CTA Section
/*----------------------------------------------*/
.border-dotted {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}


/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/


/* 5.1 Projects Page
/*----------------------------------------------*/

button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--primary-color);
}


/*--------------------------------------------------------------
 5.2 Pricing page 
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--secondary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 300px;
}


/*--------------------------------------------------------------
 5.3 Reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}

/* LOGO */
.logo{
  width: 200px;
}
.about-heading{
  font-size: 36px;
}

.menu-list{
  line-height: 2;
}
.footer-lis{
  margin-left: 10px;
}

@media(max-width:480px){
  .info{
    display: block;
  }
}

/* ABOUT BANNER */
.about-banner {
  position: relative;
  background:no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-overlay h1 {
  color: #000;
  font-size: 2.7rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .about-banner {
    height: 200px;
  }

  .about-overlay h1 {
    font-size: 2.5rem;
  }
}

/* ABOUT PAGE SUCCESS BOX */
.success-box {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
}

.success-box .years {
  min-width: 100px;
}

.success-box .years h2 {
  font-size: 3rem;
  color: #e74c3c;
}

.success-box .years p {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .success-box {
    flex-direction: column;
    text-align: center;
  }

  .success-box .years {
    margin-bottom: 10px;
  }
}


/* FOUNDER SECTION */
.founder-section {
  padding: 40px 20px;
  background: #f7f7f7;
}

.founder-section .container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.left-box {
  background: #de1c26;
  color: #fff;
  padding: 30px;
  flex: 1 1 300px;
  text-align: center;
  position: relative;
}

.left-box h2 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.image-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.image-wrapper img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

.right-box {
  flex: 2 1 500px;
  padding: 30px;
  color: #333;
}

.right-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.right-box span{
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

.right-box p {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .founder-section{
    padding: 50px 12px;
  }
  .founder-section .container {
    /* flex-direction: column; */
  }

  .left-box,
  .right-box {
    padding: 20px;
  }

  .image-wrapper img {
    width: 250px;
    height: 250px;
  }

  .right-box h3 {
    font-size: 22px;
  }

  .right-box p {
    font-size: 15px;
  }
}

/* SERVICES-SECTION */
    .services-section {
      max-width: 1200px;
      margin: auto;
    }

    .services-section h2 {
      font-size: 40px;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .services-section p.intro {
      text-align: center;
      font-size: 16px;
      margin-bottom: 40px;
      color: #333;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: #fff;
      border-radius: 3px;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card img {
      width: 100%;
      height: 380px;
      object-fit: cover;
    }

    .service-content {
      padding: 10px;
    }

    .service-content h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #222;
    }

    .service-content ul {
      padding-left: 18px;
      margin-bottom: 15px;
      color: #444;
    }

    .service-content ul li {
      margin-bottom: 5px;
    }

    .service-content p.note {
      font-style: italic;
      color: #666;
    }

    @media(max-width:998px){
      .services-section{
        padding: 10px;
      }
    }

    @media(max-width:768px){
      .services-section{
        padding: 10px;
        margin-bottom: 20px;
      }
    }


/* PROJECTS */

.project-section {
  padding: 50px 10px;
  background-color: #f9f9f9;
}

.project-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.project-section p {
  font-size: 1rem;
  color: #555;
  max-width: 1000px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.project-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project-box {
  width: 350px;
  height: 350px;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.project-box img {
  width: 100%;
  height: auto;
  display: block;
}

.social-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-btn i {
  font-size: 1.8rem;
}

.social-btn.instagram {
  background:linear-gradient(#FED761, #FA7E1E, #D62976, #962FBF, #4F5BD5);
  color: #fff
}

.social-btn.facebook {
  background: #3B5998;
  color: white;
}

.social-btn.youtube {
  background: #FF0000;
  color: #fff;
}

.social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* CONTACT PAGE */
.contact-map-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-heading {
  text-align: center;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.contact-heading::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #de1c26;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

.contact-map-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.map-container {
  flex: 1 1 50%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-details {
  flex: 1 1 40%;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-details h3 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #de1c26;
}

.contact-details p{
  margin-bottom: 30px;
}

.contact-details strong {
  margin-bottom: 30px;
  font-size:1.2rem;
  color: #333;
}

.contact-details a{
  font-size: 17px;
  color: #222;
  margin-bottom: 15px;
}


/* CLIENTS PAGE */
.client-logo{
  width: 240px;
  height: 200px;
}

/* MEP CONSULTANCY */
.section-title {
  text-align: center;
  padding: 40px 20px 10px;
  font-size: 2.2rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 4px;
  color: #222;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.service-box {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  flex: 1 1 300px;
  text-align: center;
  overflow: hidden;
}

.service-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #000;
}

.service-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.service-box button {
  background-color: #de1c26;
  color: #fff;
  border: none;
  padding: 12px 25px;
  margin: 20px auto;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-box button:hover {
  background-color: #000;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.7rem;
  }
  .services-container{
    padding: 5px;
  }
}

/* VDEO SECTION */
.video-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.video-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.video-heading p {
  color: #555;
  margin-bottom: 30px;
}

.video-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.video-box {
  /* flex: 1 1 300px; */
  max-width: 550px;
  width: 100%;
  aspect-ratio: 9 / 9;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Buttons */
.floating-contact-buttons-vertical {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-contact-buttons-vertical .btn {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.floating-contact-buttons-vertical img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

.whatsapp-btn {
  background-color: #25d366;
}
.whatsapp-btn:hover {
  background-color: #1ebe57;
}
.call-btn {
  background-color: #de1c26;
}
.call-btn:hover {
  background-color: #ef555c;
}

@media (max-width: 768px) {
  .floating-contact-buttons-vertical {
    right: 15px;
    bottom: 30px;
  }

  .floating-contact-buttons-vertical .btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .floating-contact-buttons-vertical img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

@media (max-width: 480px) {
  .floating-contact-buttons-vertical {
    right: 10px;
    bottom: 30px;
    gap: 10px;
  }

  .floating-contact-buttons-vertical .btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .floating-contact-buttons-vertical img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}

/* ACHEIVEMENTS */
#achievements {
  background-color: #f9f9f9;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
  margin-top: 8px;
}

.achievement-box {
  background: #fff;
  border-left: 5px solid #de1c26;
  border-radius: 10px;
}

#acheivement-box p{
  font-size: 20px;
}

.gallery-img img {
  width: 100%;
  height: 650px;
  transition: transform 0.3s ease;
}

.gallery-img img:hover {
  transform: scale(1.05);
}

.gallery-images img{
  width: 450px;
  height: 350px;
}

.gallery-imgg img:hover{
  transform: scale(1.05)
}

@media(max-width:768px){
  .gallery-img img{
    height: auto;
  }
  .gallery-images img{
    width: 100%;
    height: auto;
  }
}

/* Social Icons */
.social-icons i{
  font-size: 22px;
}
.social-icons i:hover{
  color: #de1c26;
  transform: scale(1.05);
}

/* CAREERS PAGE */
.career-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.career-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.career-content {
  flex: 1 1 500px;
}

.career-title {
  font-size: 2.1rem;
  color: #222;
  margin-bottom: 20px;
}

.career-title span {
  color: #de1c26;
  margin-right: 8px;
}

.career-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.career-contact p {
  font-size: 1rem;
  color: #222;
  margin: 5px 0;
}

.career-contact a {
  color: #de1c26;
  text-decoration: none;
  font-weight: bold;
}

.career-image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

.career-image {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .career-container {
    flex-direction: column;
    text-align: center;
  }

  .career-content {
    padding: 0 10px;
  }

  .career-title {
    font-size: 1.5rem;
  }

  .career-description,
  .career-contact p {
    font-size: 0.95rem;
  }
}

/* parpidam */
.parpidam{
  font-size: 34px;
}
.parpidam-mag p{
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  
}


    .service-contentt{
      padding: 0;
    }

    .service-contentt ul {
      padding-left: 18px;
      margin-bottom: 15px;
      color: #444;
    }

    .service-contentt ul li {
      margin-bottom: 5px;
    }