/* --- Variables & Reset --- */

:root {

  --font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --primary-color: #f7a000;

  --primary-rgb: 247, 160, 0;

  --secondary-color: #1a1a1a;

  --secondary-rgb: 26, 26, 26;

  --text-color: #666666;

  --muted-color: #888888;

  --muted-light: #cccccc;

  --border-color: #eeeeee;

  --bg-light: #f4f5f7;

  --white: #ffffff;

  --white-rgb: 255, 255, 255;

  --black: #000000;

  --black-rgb: 0, 0, 0;

  --dark-bg: #0f0f0f;

  --dark-bg-soft: #222222;

  --header-glass: rgba(var(--white-rgb), 0.24);

  --shadow-soft: 0 10px 30px rgba(var(--black-rgb), 0.08);

  --shadow-card: 0 5px 15px rgba(var(--black-rgb), 0.05);

  --transition: all 0.3s ease;

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: var(--font-family);

}

body {

  color: var(--text-color);

  font-family: var(--font-family);

  line-height: 1.7;

  overflow-x: hidden;

}

button,

input,

textarea,

select {

  font: inherit;

}

h1,

h2,

h3,

h4,

h5,

h6 {

  color: var(--secondary-color);

  font-weight: 700;

}

a {

  text-decoration: none;

  transition: var(--transition);

}

.container {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 15px;

}

.text-center {

  text-align: center;

}



/* --- Reusable Components --- */

.subtitle {

  color: var(--primary-color);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 14px;

  display: block;

  margin-bottom: 10px;

}

.section-title h2 {

  font-size: 36px;

  margin-bottom: 40px;

}

.btn {

  display: inline-block;

  padding: 14px 30px;

  font-weight: 600;

  text-transform: uppercase;

  font-size: 14px;

  border-radius: 2px;

  cursor: pointer;

  border: none;

}

.btn-primary {

  background: var(--primary-color);

  color: var(--white);

}

.btn-primary:hover {

  background: var(--secondary-color);

  color: var(--white);

}



.btn-primary-1 {

  background: var(--primary-color);

  border: 2px solid var(--primary-color) !important;

  color: var(--white);

}

.btn-primary-1:hover {

  background: var(--secondary-color);

  border: 2px solid var(--primary-color) !important;

  color: var(--white);

}



.btn-outline {

  border: 2px solid var(--white);

  color: var(--white);

}

.btn-outline:hover {

  background: var(--white);

  color: var(--secondary-color);

}



/* --- Top Bar --- */

.top-bar {

  background: var(--secondary-color);

  color: var(--muted-color);

  font-size: 13px;

  padding: 12px 0;

}

.top-bar-inner {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.contact-info span {

  margin-right: 25px;

}

.contact-info i {

  color: var(--primary-color);

  margin-right: 5px;

}

.social-links a {

  color: var(--muted-color);

  margin-left: 15px;

}

.social-links a:hover {

  color: var(--primary-color);

}



/* --- Header --- */

/* Header */

.main-header {

  position: absolute;

  top: 45px;

  left: 0;

  width: 100%;

  z-index: 999;

  background: var(--header-glass);

  padding: 20px 0;

  transition: all 0.35s ease;

}

.logo {
    position: relative;
    max-width: 350px;
    display: flex;
}

.main-header .logo h1,

.main-header .nav-links a,

.main-header .phone-block strong,

.main-header .phone-block span,

.main-header .phone-block i,

.main-header .mobile-menu-btn {

  color: var(--white);

}



.main-header.sticky {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  background: var(--white);

  padding: 15px 0;

  box-shadow: var(--shadow-soft);

  animation: slideDown 0.4s ease;

}



.main-header.sticky .logo h1,

.main-header.sticky .nav-links a,

.main-header.sticky .phone-block strong,

.main-header.sticky .phone-block span,

.main-header.sticky .phone-block i,

.main-header.sticky .mobile-menu-btn {

  color: var(--secondary-color);

}



.main-header.sticky .nav-links a:hover,

.main-header.sticky .nav-links a.active {

  color: var(--primary-color);

}

@keyframes slideDown {

  from {

    transform: translateY(-100%);

  }

  to {

    transform: translateY(0);

  }

}

.header-inner {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.logo h1 {

  font-size: 30px;

  letter-spacing: -1px;

}

.logo span {

  color: var(--primary-color);

}

.nav-links {

  display: flex;

  list-style: none;

  gap: 30px;

}

.nav-links a {

  color: var(--secondary-color);

  font-weight: 600;

  text-transform: uppercase;

  font-size: 14px;

}

.nav-links a:hover,

.nav-links a.active {

  color: var(--primary-color);

}

.header-cta .phone-block {

  display: flex;

  align-items: center;

  gap: 15px;

}

.header-cta .phone-block i {

  font-size: 24px;

  color: var(--primary-color);

}

.header-cta .phone-block div {

  display: flex;

  flex-direction: column;

}

.header-cta .phone-block span {

  font-size: 12px;

  color: var(--primary-color);

}

.header-cta .phone-block strong {

  color: var(--secondary-color);

  font-size: 16px;

}

.mobile-menu-btn {

  display: none;

  font-size: 24px;

  cursor: pointer;

  color: var(--secondary-color);

}



.hero-section {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 200px 0 150px;

}



.hero-video {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: -2;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(

    90deg,

    rgba(var(--black-rgb), 0.75),

    rgba(var(--black-rgb), 0.35)

  );

  z-index: -1;

}



.hero-content {

  position: relative;

  z-index: 2;

}

.hero-content h2 {

  color: var(--white);

  font-size: 55px;

  line-height: 1.1;

  margin: 15px 0 25px;

}

.hero-content p {

  color: var(--muted-light);

  font-size: 18px;

  margin-bottom: 40px;

}

.hero-buttons {

  display: flex;

  gap: 20px;

}



@media (max-width: 991px) {

  .header-cta {

    display: none;

  }

}



@media (max-width: 768px) {

  .main-header {

    position: absolute;

    top: 0px;

    left: 0;

    width: 100%;

    z-index: 999;

    background: var(--header-glass);

    padding: 20px 0;

    transition: all 0.35s ease;

  }



  .main-header .logo h1,

  .main-header .nav-links a,

  .main-header .phone-block strong,

  .main-header .phone-block span,

  .main-header .phone-block i,

  .main-header .mobile-menu-btn {

    color: var(--black);

  }

}



/* --- Features Section --- */

.features-section {

  padding: 0;

  position: relative;

  margin-top: -50px;

  z-index: 10;

}

.features-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  box-shadow: var(--shadow-soft);

}

.feature-box {

  background: var(--white);

  padding: 40px;

  text-align: center;

  border-right: 1px solid var(--border-color);

  transition: var(--transition);

}

.feature-box.is-highlighted {

  background: var(--primary-color);

  color: var(--white);

}

.feature-box.is-highlighted i,

.feature-box.is-highlighted h3 {

  color: var(--white);

}

.feature-box:last-child {

  border-right: none;

}

.feature-box i {

  font-size: 40px;

  color: var(--primary-color);

  margin-bottom: 20px;

}

.feature-box h3 {

  margin-bottom: 15px;

  font-size: 20px;

}

.feature-box:hover {

  transform: translateY(-10px);

}



/* --- About Section --- */

.about-section {

  padding: 100px 0;

}

.about-inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

}

.about-images {

  position: relative;

}

.about-images img {

  width: 100%;

  border-radius: 5px;

}

.experience-badge {

  position: absolute;

  bottom: -30px;

  right: -30px;

  background: var(--primary-color);

  padding: 30px;

  color: var(--white);

  text-align: center;

  border-radius: 5px;

  border: 5px solid var(--white);

}

.experience-badge h2 {

  color: var(--white);

  font-size: 40px;

  margin-bottom: 0;

}

.about-text p {

  margin-bottom: 25px;

}

.about-text .btn {

  margin-top: 20px;

}

.progress-block {

  margin-bottom: 20px;

}

.progress-title {

  display: flex;

  justify-content: space-between;

  font-weight: 600;

  color: var(--secondary-color);

  margin-bottom: 8px;

}

.progress-bar {

  width: 100%;

  height: 8px;

  background: var(--border-color);

  border-radius: 4px;

  overflow: hidden;

}

.progress-fill {

  height: 100%;

  background: var(--primary-color);

}



/* --- Services Section --- */

.services-section {

  background: var(--bg-light);

  padding: 100px 0;

}

.services-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;

}

.service-card {

  background: var(--white);

  border-radius: 5px;

  overflow: hidden;

  box-shadow: var(--shadow-card);

  transition: var(--transition);

}

.service-card img {

  width: 100%;

  height: 240px;

  object-fit: cover;

  transition: transform 0.5s ease;

}

.service-card:hover img {

  transform: scale(1.05);

}

.service-content {

  padding: 30px;

}

.service-content h3 {

  margin-bottom: 15px;

}

.read-more {

  color: var(--primary-color);

  font-weight: 700;

  text-transform: uppercase;

  font-size: 13px;

  display: inline-flex;

  align-items: center;

  gap: 5px;

  margin-top: 15px;

}

.read-more:hover {

  color: var(--secondary-color);

}



/*=================================

        PROJECTS SECTION

=================================*/



.projects-section {

  padding: 100px 0;

}



.projects-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

}



.project-item {

  position: relative;

  overflow: hidden;

  border-radius: 8px;

}



.project-item img {

  width: 100%;

  height: 350px;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;

}



.project-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 30px;

  background: linear-gradient(

    to top,

    rgba(var(--black-rgb), 0.9),

    rgba(var(--black-rgb), 0.3),

    transparent

  );

  opacity: 0;

  transition: 0.4s ease;

}



.project-overlay h3 {

  color: var(--white);

  font-size: 24px;

  margin-bottom: 8px;

}



.project-overlay span {

  color: var(--primary-color);

  font-size: 15px;

  font-weight: 600;

}



.project-item:hover img {

  transform: scale(1.08);

}



.project-item:hover .project-overlay {

  opacity: 1;

}



/*============================

        RESPONSIVE

=============================*/



@media (max-width: 1199px) {

  .projects-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 991px) {

  .projects-section {

    padding: 80px 0;

  }



  .projects-grid {

    gap: 20px;

  }



  .project-item img {

    height: 300px;

  }

}



@media (max-width: 767px) {

  .projects-section {

    padding: 70px 0;

  }



  .projects-grid {

    grid-template-columns: 1fr;

    gap: 20px;

  }



  .project-item img {

    height: 280px;

  }



  .project-overlay {

    opacity: 1;

    padding: 20px;

    background: linear-gradient(

      to top,

      rgba(var(--black-rgb), 0.85),

      transparent

    );

  }



  .project-overlay h3 {

    font-size: 20px;

  }



  .project-overlay span {

    font-size: 14px;

  }

}



@media (max-width: 575px) {

  .project-item img {

    height: 240px;

  }



  .project-overlay {

    padding: 18px;

  }



  .project-overlay h3 {

    font-size: 18px;

  }

}



/* --- CTA Section --- */

.cta-section {

  padding: 120px 0;

  position: relative;

  color: var(--white);

}

.cta-overlay {

  position: absolute;

  inset: 0;

  background: rgba(var(--secondary-rgb), 0.95);

}

.cta-content {

  position: relative;

  z-index: 2;

  max-width: 700px;

  margin: 0 auto;

}

.cta-content h2 {

  color: var(--white);

  font-size: 40px;

  margin-bottom: 20px;

}

.cta-content p {

  font-size: 18px;

  margin-bottom: 30px;

  color: var(--muted-light);

}

.cta-section.has-bg {

  background: url("/images/cta-bg.webp") no-repeat

    center/cover fixed;

}



/* --- Footer --- */

.main-footer {

  background: var(--black);

  padding-top: 80px;

  color: var(--muted-color);

}

.footer-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 40px;

  margin-bottom: 50px;

}

.footer-widget h2 {

  color: var(--white);

  margin-bottom: 20px;

}

.footer-widget h2 span {

  color: var(--primary-color);

}

.footer-widget .social-links {

  margin-top: 20px;

}

.footer-widget h3 {

  color: var(--white);

  margin-bottom: 25px;

  position: relative;

  padding-bottom: 15px;

}

.footer-widget h3::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 40px;

  height: 2px;

  background: var(--primary-color);

}

.footer-links {

  list-style: disc;

}

.footer-links li {

  margin-bottom: 12px;

}

.footer-links a {

  color: var(--muted-color);

}

.footer-links a:hover {

  color: var(--primary-color);

  padding-left: 5px;

}

.footer-contact {

  list-style: none;

}

.footer-contact li {

  margin-bottom: 15px;

  display: flex;

  gap: 15px;

}

.footer-contact i {

  color: var(--primary-color);

  margin-top: 5px;

}

.newsletter-form {

  display: flex;

  margin-top: 20px;

}

.newsletter-form input {

  flex: 1;

  padding: 12px 15px;

  border: none;

  outline: none;

  background: var(--dark-bg-soft);

  color: var(--white);

}

.newsletter-form button {

  padding: 12px 20px;

  border-radius: 0;

}

.footer-bottom {

  background: var(--dark-bg);

  padding: 20px 0;

  font-size: 14px;

}



/* --- Animations --- */

.animate-on-scroll {

  opacity: 0;

  transform: translateY(30px);

  transition:

    opacity 0.6s ease,

    transform 0.6s ease;

}

.animate-on-scroll.visible {

  opacity: 1;

  transform: translateY(0);

}

.fade-in-up {

  animation: fadeInUp 1s ease forwards;

}

@keyframes fadeInUp {

  from {

    opacity: 0;

    transform: translateY(40px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* --- Responsive --- */

@media (max-width: 992px) {

  .features-grid {

    grid-template-columns: 1fr;

    margin-top: 40px;

  }

  .feature-box {

    border-right: none;

    border-bottom: 1px solid var(--border-color);

  }

  .about-inner {

    grid-template-columns: 1fr;

  }

  .experience-badge {

    bottom: 0;

    right: 0;

  }

}

@media (max-width: 768px) {

  .top-bar,

  .header-cta {

    display: none;

  }

  .mobile-menu-btn {

    display: block;

  }

  .nav-links {

    display: none;

    flex-direction: column;

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    background: var(--white);

    padding: 20px;

    box-shadow: var(--shadow-soft);

  }

  .nav-links.show {

    display: flex;

  }

  .hero-content h2 {

    font-size: 38px;

  }

}



/*==============================

    SERVICES STYLE TWO

==============================*/



.services-style-2 {

  background: var(--bg-light);

  padding: 30px 0;

}



.services-style-2 .section-title {

  margin-bottom: 60px;

}



.services-style-2 .section-title h2 {

  font-size: 52px;

  font-weight: 800;

  color: var(--secondary-color);

  margin-bottom: 15px;

  text-transform: capitalize;

}



.services-style-2 .section-title span {

  display: inline-block;

  position: relative;

  color: var(--primary-color);

  letter-spacing: 2px;

  font-size: 13px;

  font-weight: 700;

  padding-bottom: 18px;

}



.service-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

}



.service-box {

  background: var(--white);

  padding: 15px;

  text-align: center;

  border: 1px solid var(--border-color);

  transition: all 0.35s ease;

}



.service-box:hover {

  background: var(--primary-color);

  border-color: var(--primary-color);

  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.12);

}



.service-icon {

  width: 65px;

  height: 65px;

  margin: 0 auto 10px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 2px solid rgba(var(--primary-rgb), 0.15);

  border-radius: 50%;

  transition: all 0.35s ease;

}



.service-icon i {

  font-size: 42px;

  color: var(--primary-color);

  transition: all 0.35s ease;

}



.service-box h4 {

  font-size: 22px;

  color: var(--secondary-color);

  margin: 0;

  font-weight: 700;

  line-height: 1.4;

  transition: all 0.35s ease;

}



.service-box:hover .service-icon {

  background: rgba(var(--white-rgb), 0.15);

  border-color: var(--white);

}



.service-box:hover .service-icon i {

  color: var(--white);

}



.service-box:hover h4 {

  color: var(--white);

}



/* Responsive */



@media (max-width: 991px) {

  .service-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .services-style-2 .section-title h2 {

    font-size: 42px;

  }

}



@media (max-width: 767px) {

  .service-grid {

    grid-template-columns: 1fr;

  }



  .services-style-2 {

    padding: 70px 0;

  }



  .services-style-2 .section-title h2 {

    font-size: 34px;

  }

}



/*=================================

        QUOTE SECTION

=================================*/



.quote-section {

  background: var(--primary-color);

  padding: 100px 0;

}



/* Heading */



.quote-section .sub-title {

  display: block;

  color: rgba(var(--white-rgb), 0.85);

  letter-spacing: 2px;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 15px;

  text-transform: uppercase;

}



.quote-section .section-heading h2 {

  color: var(--white);

  font-size: 52px;

  font-weight: 700;

  position: relative;

  margin-bottom: 40px;

}



/*====================

        FORM

=====================*/



.quote-section .form-control {

  background: var(--white);

  border: 1px solid rgba(var(--primary-rgb), 1);

  border-radius: 0;

  color: var(--secondary-color);

  min-height: 58px;

  padding: 18px 20px;

  box-shadow: none !important;

}

.quote-section textarea.form-control {

  min-height: 180px;

  resize: none;

}



.quote-section .form-control::placeholder {

  color: var(--secondary-color);

  opacity: 1; /* Required for Firefox */

}



.quote-section .form-control:focus {

  background: var(--white);

  border-color: rgba(var(--primary-rgb), 1);

  color: var(--secondary-color);

  box-shadow: none;

}



/*====================

      ACCORDION

=====================*/



.quote-section .accordion-item {

  border: none;

  border-radius: 0;

  margin-bottom: 15px;

  overflow: hidden;

}



.quote-section .accordion-button {

  background: rgba(var(--white-rgb), 0.12);

  color: var(--secondary-color);

  font-weight: 600;

  padding: 20px;

  box-shadow: none !important;

}



.quote-section .accordion-button:hover {

  background: rgba(var(--white-rgb), 0.18);

}



.quote-section .accordion-button:not(.collapsed) {

  background: var(--white);

  color: var(--primary-color);

}



.quote-section .accordion-button:not(.collapsed)::after {

  filter: none;

}



.quote-section .accordion-body {

  background: var(--white);

  color: var(--text-color);

  line-height: 1.8;

  border-top: 1px solid rgba(var(--primary-rgb), 0.55);

  padding: 20px;

}



/*====================

        BUTTON

=====================*/



.quote-section .btn-primary {

  background: var(--white) !important;

  border: 2px solid var(--white) !important;

  color: var(--primary-color) !important;

  padding: 14px 36px;

  font-weight: 600;

  text-transform: uppercase;

  transition: 0.35s ease;

}



.quote-section .btn-primary:hover {

  background: transparent !important;

  color: var(--white) !important;

  border: 2px solid var(--white) !important;

}



/*=================================

        RESPONSIVE

=================================*/



@media (max-width: 1199px) {

  .quote-section {

    padding: 90px 0;

  }



  .quote-section .section-heading h2 {

    font-size: 44px;

  }

}



@media (max-width: 991px) {

  .quote-section {

    padding: 80px 0;

  }



  .quote-section .section-heading {

    margin-bottom: 35px;

  }



  .quote-section .section-heading h2 {

    font-size: 38px;

    margin-bottom: 25px;

  }



  .quote-section .accordion {

    margin-top: 40px;

  }

}



@media (max-width: 767px) {

  .quote-section {

    padding: 70px 0;

  }



  .quote-section .section-heading {

    text-align: center;

    margin-bottom: 30px;

  }



  .quote-section .sub-title {

    font-size: 12px;

    letter-spacing: 3px;

    margin-bottom: 10px;

  }



  .quote-section .section-heading h2 {

    font-size: 30px;

    line-height: 1.3;

    margin-bottom: 20px;

  }



  .quote-section .form-control {

    min-height: 52px;

    padding: 14px 16px;

    font-size: 15px;

  }



  .quote-section textarea.form-control {

    min-height: 150px;

  }



  .quote-section .accordion-button {

    padding: 16px 18px;

    font-size: 16px;

  }



  .quote-section .accordion-body {

    padding: 18px;

    font-size: 15px;

  }



  .quote-section .btn-primary {

    width: 100%;

    padding: 15px;

  }

}



@media (max-width: 575px) {

  .quote-section {

    padding: 60px 0;

  }



  .quote-section .section-heading h2 {

    font-size: 26px;

  }



  .quote-section .sub-title {

    letter-spacing: 2px;

    font-size: 11px;

  }



  .quote-section .form-control {

    min-height: 48px;

    padding: 12px 15px;

  }



  .quote-section textarea.form-control {

    min-height: 130px;

  }



  .quote-section .accordion-button {

    padding: 14px 16px;

    font-size: 15px;

  }



  .quote-section .accordion-body {

    padding: 16px;

    font-size: 14px;

    line-height: 1.7;

  }

}



/*==================================

        ADVANTAGES SECTION

==================================*/



.advantages-section {

  background: var(--secondary-color);

  padding: 100px 0;

  position: relative;

  overflow: hidden;

}



/* Left Heading */



.advantages-section .sub-title {

  color: rgba(var(--white-rgb), 0.75);

  display: block;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 15px;

}



.advantages-section .section-heading h2 {

  color: var(--white);

  font-size: 52px;

  font-weight: 700;

  margin-bottom: 25px;

}







/* Description */



.adv-desc {

  color: rgba(var(--white-rgb), 0.8);

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 40px;

}



/* Button */



.advantages-section .btn-outline-light {

  border: 2px solid rgba(var(--white-rgb), 0.45);

  color: var(--white);

  border-radius: 0;

  padding: 15px 35px;

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: 0.35s;

}



.advantages-section .btn-outline-light:hover {

  background: var(--primary-color);

  border-color: var(--primary-color);

  color: var(--white);

}



/* Cards */



.adv-card {

  background: var(--white);

  padding: 40px 35px;

  height: 100%;

  transition: 0.35s ease;

}



.adv-card i {

  font-size: 46px;

  color: var(--primary-color);

  margin-bottom: 25px;

}



.adv-card h4 {

  color: var(--secondary-color);

  margin-bottom: 15px;

}



.adv-card p {

  color: var(--text-color);

  line-height: 1.8;

}



.adv-card:hover {

  background: var(--primary-color);

  transform: translateY(-8px);

}



.adv-card:hover i,

.adv-card:hover h4,

.adv-card:hover p {

  color: var(--white);

}



/* Responsive */



@media (max-width: 991px) {

  .advantages-section {

    padding: 80px 0;

  }



  .advantages-section .section-heading h2 {

    font-size: 42px;

  }

}



@media (max-width: 767px) {

  .advantages-section {

    padding: 70px 0;

  }



  .advantages-section .section-heading h2 {

    font-size: 34px;

  }



  .advantages-section .sub-title {

    letter-spacing: 4px;

  }

}



/*==================================

        BRAND SECTION

==================================*/

/*==============================

        BRAND SECTION

==============================*/



.brand-section {

  background: var(--bg-light);

  padding: 70px 0;

  overflow: hidden;

}



.brandSwiper {

  width: 100%;

  overflow: hidden;

}



.brandSwiper .swiper-wrapper {

  align-items: center;

}



.brandSwiper .swiper-slide {

  display: flex;

  justify-content: center;

  align-items: center;

  height: 90px;

}



.brandSwiper .swiper-slide img {

  width: auto;

  max-width: 150px;

  max-height: 50px;

  object-fit: contain;

  opacity: 0.45;

  transition: all 0.35s ease;

}



.brandSwiper .swiper-slide:hover img {

  opacity: 1;

  transform: scale(1.08);

}



.text-primary{

    color: var(--primary-color) !important;

}





.gallery-section{

    padding:100px 0;

    background:#fff;

}



.gallery-tabs .nav-link{

    border:none;

    background:#f5f5f5;

    color:var(--secondary-color);

    margin:5px 5px;

    border-radius:0;

    padding:12px 30px;

    font-weight:600;

}



.gallery-tabs .nav-link.active{

    background:var(--primary-color);

    color:#fff;

}



.gallery-item{

    position:relative;

    display:block;

    overflow:hidden;

}



.gallery-item img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s;

}



.gallery-item span{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,0,0,.65);

    opacity:0;

    transition:.4s;

}



.gallery-item span i{

    color:#fff;

    font-size:30px;

}



.gallery-item:hover img{

    transform:scale(1.1);

}



.gallery-item:hover span{

    opacity:1;

}