* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body{
  overflow-x: hidden;
}

:root {
  --bg-color: #050b16;
  --text-color: #fff;
  --primary-color: #00e5ff;
  --secondary-color: #ff00ea;
  --btn-color: #fff;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --primary: #1a5276;
  --secondary: #e74c3c;
  --accent: #f39c12;
  --light: #f8f9fa;
  --dark: #2c3e50;
  --text-muted: #6c757d;
}




/* Hero Container */
.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Swiper container styles */
.swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h2 {
  font-family: "playfair display", serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  
}

.slide-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

.slide-btn {
  display: inline-block;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 5;
}

.wave {
  width: 100%;
  height: 100%;
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 49;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.8rem 1rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: #f8f9fa;
  color: #2A069A;
}

/* Hamburger Animation */
#hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

#hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger-line {
  transition: all 0.3s ease;
}

/* Header Mobile Styles */
@media (max-width: 768px) {
  header {
    padding: 0.5rem 0;
  }

  header img {
    height: 60px !important;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: white;
  width: 30px;
  border-radius: 10px;
}

/* About Section */
.section_all {
  padding: 80px 0;
  position: relative;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.text-custom {
  color: #00e5ff !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-12,
.col-lg-6,
.col-lg-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.text-center {
  text-align: center !important;
}

.font-weight-bold {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
}

.section_title_all {
  margin-bottom: 60px;
}

.section_subtitle {
  margin-top: 15px;
  margin-bottom: 1rem;
  font-size: 1.2rem !important;
}

.text-muted {
  color: #6c757d !important;
  font-size: 1.2rem;
}

.vertical_content_manage {
  display: flex;
  flex-wrap: wrap;
}

.about_header_main {
  margin-top: 0.75rem !important;
}

.text_custom {
  color: #00e5ff;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.img_about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about_content_box_all {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about_content_box_all:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

 

.about_icon {
  font-size: 40px;
  color: #00e5ff;
  margin-bottom: 20px;
}

.about_detail h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #212529;
}

.edu_desc {
  line-height: 1.6;
  color: #6c757d;
  font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .slide-content h2 {
    font-size: 2.8rem;
  }

  .slide-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  

  .slide-content h2 {
    font-size: 2.2rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .slide-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .section_all {
    padding: 60px 0;
  }

  .about_content_box_all {
    margin-bottom: 30px;
  }
}

.approval-section {
  text-align: center; /* centers heading and images container */
  padding: 50px 20px;
  background-color: #f9f9f9; /* optional background */
}

.approval-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ee0a0a;
}

.images-container {
  display: flex;
  justify-content: center; /* centers images horizontally */
  gap: 20px; /* space between images */
  flex-wrap: wrap; /* wrap on smaller screens */
}

.images-container img {
  width: 350px; /* adjust size */
  height: 200px;
  object-fit: contain;
  border-radius: 10px; /* optional rounded corners */
}



.hero-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-color);
}

 
/* Animated Button (Volumetric Press style) */
.btn-discover {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  color: var(--btn-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  transform: translateZ(20px);
}
.btn-discover:hover {
  background-color: var(--primary-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--primary-color);
  transform: translateZ(30px) scale(1.05);
}

/* Interactive SVG Wave */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 5;
  pointer-events: none;
}
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  left: 0;
  transform-style: preserve-3d;
}
.wave use {
  animation: wave-animation 10s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  transform: translate(var(--parallax-x), var(--parallax-y));
  transition: transform 0.1s ease-out;
}
.wave use:nth-child(1) {
  animation-delay: -2s;
  opacity: 0.5;
  transform: translateZ(10px);
}
.wave use:nth-child(2) {
  animation-delay: -3s;
  opacity: 0.7;
  transform: translateZ(20px);
}
.wave use:nth-child(3) {
  animation-delay: -4s;
  opacity: 1;
  transform: translateZ(30px);
}
@keyframes wave-animation {
  0% {
    transform: translateX(-90px);
  }
  100% {
    transform: translateX(85px);
  }
}

.section_all {
  color: #000;
  padding: 80px 0;
  position: relative;
}

.bg-light {
  background-color: var(--light) !important;
}

.text-custom {
  color: var(--secondary) !important;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.section_title_all {
  margin-bottom: 60px;
}

.section_title_all h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section_title_all h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.section_subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
}

.vertical_content_manage {
  display: flex;
  align-items: center;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.about_header_main {
  padding-right: 30px;
}

.about_icon_box {
  background: linear-gradient(135deg, var(--primary), #2c3e50);
  color: white;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about_heading {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.text-muted {
  color: var(--text-muted) !important;
}

.img_about {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.img_about:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.img_about img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.5s ease;
  height: 420px;
  border-radius: 6%;
}

.img_about:hover img {
  transform: scale(1.03);
}

/* Card Styles with Bottom Edge Hover Effect */
.about_content_box_all {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.about_content_box_all:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FE5405;
  transition: all 0.4s ease;
  z-index: 0;
  opacity: 0;
  border-radius: 10px;
  
}

.about_content_box_all:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about_content_box_all:hover:before {
  height: 100%;
  opacity: 1;
  bottom: 0;
}

.about_detail {
  position: relative;
  z-index: 1;
}

.about_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease;
}

.about_content_box_all:hover .about_icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.about_icon i {
  font-size: 2rem;
  color: var(--secondary);
  transition: all 0.4s ease;
}

.about_content_box_all:hover .about_icon i {
  color: white;
}

.about_detail h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 20px 0 15px;
  transition: all 0.4s ease;
  color: var(--dark);
}

.about_content_box_all:hover .about_detail h5 {
  color: white;
}

.edu_desc {
  transition: all 0.4s ease;
}

.about_content_box_all:hover .edu_desc {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .vertical_content_manage {
    flex-direction: column;
  }

  .about_header_main {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .section_title_all h3 {
    font-size: 2rem;
  }

  .about_heading {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .section_all {
    padding: 60px 0;
  }

  .section_title_all h3 {
    font-size: 1.8rem;
  }
}


        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .logo-trailer {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ff7e00;
            margin-bottom: 10px;
        }

        .tagline-trailer {
            font-size: 1.5rem;
            color: #aab7c5;
            margin-bottom: 40px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        /* Service card */
        .service-card {
            height: 380px;
            perspective: 1000px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front,
        .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .service-card-front {
            background-size: cover;
            background-position: center;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
            background-blend-mode: overlay; 
        }

        .service-card-back {
            background: linear-gradient(135deg, #ff9102 0%, #ca6403 100%);
            color: #e0e1dd;
            transform: rotateY(180deg);
            justify-content: space-between;
        }

        /* Background images for each service */
        .service-card:nth-child(1) .service-card-front {
            background-image: url("/assets/img/products/side-wall-1.jpg");
        }

        .service-card:nth-child(2) .service-card-front {
            background-image: url("/assets/img/products/flatbed-1.jpg");
        }

        .service-card:nth-child(3) .service-card-front {
            background-image: url("/assets/img/products/tip-tailer-2.jpg");
        }

        .service-card:nth-child(4) .service-card-front {
            background-image: url("/assets/img/services/skeltal-trailer.jpg");
        }

        .service-card:nth-child(5) .service-card-front {
            background-image: url("/assets/img/services/semi-low-bed.jpg");
        }

        .service-card:nth-child(6) .service-card-front {
            background-image: url("/assets/img/services/special.jpg");
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .service-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: #fff;
        }

        .service-description {
            font-size: 1rem;
            line-height: 1.6;
            background: rgba(13, 27, 42, 0.8);
            padding: 15px;
            border-radius: 8px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
            text-align: left;
            width: 100%;
        }

        .service-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            padding: 5px 0;
            border-bottom: 1px dashed #778da9;
        }

        .service-features i {
            margin-right: 10px;
            color: #4ecdc4;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 25px;
            background: #ff7e00;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            background: #1a73e8;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Decorative elements */
        .decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #ff7e00, transparent);
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.1;
            z-index: -1;
        }

        .decoration-1 {
            top: 10%;
            left: 5%;
        }

        .decoration-2 {
            bottom: 10%;
            right: 5%;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .logo-trailer {
                font-size: 2.5rem;
            }

            .tagline-trailer {
                font-size: 1.2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                height: 350px;
            }
            
            .service-title {
                font-size: 1.5rem;
            }
            
            .service-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }
            
            .service-card {
                height: 320px;
            }
            
            .service-card-front,
            .service-card-back {
                padding: 20px;
            }
            
            .service-icon {
                font-size: 2.5rem;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
        }

.cta-button {
  background: #1a2a3a;
  color: white;
  border: none;
  padding: 20px 25px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background: #24374a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

footer {
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
  color: #aab7c5;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: #ff7e00;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 2.2rem;
  }

  .service-card {
    height: 300px;
  }
}

/* Section -3 Why Choose Us */
.py-5 {
  margin-top: 120px;
}

.bg-gry {
  background-color: #f9fafb;
}
.feature-item {
  background-color: #bd1a1a;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 20px;
  border: none;
}

.feature-item:hover{

  border: 1px solid #bd1a1a;
  
}
@media (max-width: 768px){
  .feature-item {
    margin-bottom: 60px;
  }
}

.feature-item::before {
  content: "";
  position: absolute;
  top: -142px;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  height: 70%;
  background-color: #fdebeb;
  border-radius: 50%;
}

.feature-item .ft-icon {
  position: relative;
}

.feature-item .ft-icon i {
  color: #e83b3e;
  background-color: #fff;
  height: 97px;
  width: 100px;
  line-height: 97px;
  border-radius: 50%;
  font-size: 31px;
  transition: 0.5s;
}

.finix-text h6 {
  color: #e73d40;
  font-size: 18px;
  font-weight: 400;
}
.finix-text h2 {
  font-size: 37px;
  font-weight: 400;
  color: #000;
}
.finix-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
}

.feature-item:hover {
  transform: translateY(-10px);
}
.feature-item:hover .ft-icon i {
  background-color: #e73d40;
  color: #fff;
}

.top-4 {
  margin-top: -30px;
}
.finix-text {
  position: relative;
}
.play-animation-btn {
  height: 90px;
  width: 90px;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  font-size: 55px;
  color: #e93b3e;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 262px;
  bottom: 55px;
}
.play-animation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 90px;
  background-color: #e93b3e;
  border-radius: 50%;
  animation: playbtn 1.6s ease-out infinite;
}
@keyframes playbtn {
  0%,
  30% {
    transform: scale(0);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.cta-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.8s ease-out;
  min-height: 650px; /* Fixed height */
}

.form-section {
  flex: 1;
  padding: 50px;
  background: linear-gradient(120deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.form-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.info-section {
  flex: 1;
  padding: 50px;
  background: white;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.form-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background: #ff7aa8;
  border-radius: 2px;
}

.info-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background: #6a11cb;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

input,
textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input:focus,
textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;

  margin-bottom: 30px;
}

.info-card {
  background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.info-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.info-content {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.social-section {
  margin-top: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    min-height: auto;
  }

  .form-section,
  .info-section {
    padding: 35px;
  }

  .form-section::before,
  .form-section::after {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.content p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #555;
}

.trailer-img {
  max-width: 800px;
  height: 300px;
  background: linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("https://images.unsplash.com/photo-1501700493788-fa1a4fc9fe62?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

.content {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.content p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #555;
}

.trailer-img {
  max-width: 800px;
  height: 300px;
  background: linear-gradient(
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.7)
    ),
    url("https://images.unsplash.com/photo-1501700493788-fa1a4fc9fe62?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

.footer {
  background-color: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid #eaeaea;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 160px;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: #e74c3c;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  font-size: 1rem;
}

.footer-col ul li a:hover {
  color: #e74c3c;
  transform: translateX(5px);
}

.contact-info {
  color: #555;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  color: #e74c3c;
  min-width: 20px;
  margin-right: 12px;
  margin-top: 4px;
  font-size: 18px;
}

.contact-info span {
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  margin-left: 50px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #eaeaea;
}

.social-links a:hover {
  background: #e74c3c;
  color: #ffffff;
  transform: translateY(-5px);
  border-color: #e74c3c;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid #eaeaea;
  text-align: center;
  color: #777;
  font-size: 14px;
}

.footer-bottom a {
  color: #e74c3c;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content h1 {
    font-size: 2rem;
  }

  .trailer-img {
    height: 200px;
    font-size: 1rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

.contact-info {
  display: flex;
  flex-direction: column; /* stack each item vertically */
  gap: 10px; /* space between rows */
  margin-left: 60px;
}

.contact-item {
  display: flex;
  align-items: center; /* vertically center icon with text */
  gap: 10px; /* space between icon and text */
  font-size: 16px; /* optional: professional text size */
  color: #333; /* optional: text color */
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.gallery-container h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e74c3c;
  border-radius: 2px;
}

.tz-gallery {
  padding: 20px 0;
}

.tz-gallery .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.tz-gallery .col-sm-6,
.tz-gallery .col-md-4,
.tz-gallery .col-md-8,
.tz-gallery .col-sm-12 {
  padding: 10px;
}

.tz-gallery .lightbox {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.tz-gallery .lightbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tz-gallery .lightbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.tz-gallery .lightbox:hover:after {
  opacity: 1;
}

.tz-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.tz-gallery .lightbox:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.tz-gallery .lightbox:hover .gallery-caption {
  opacity: 1;
}

@media (max-width: 768px) {
  .tz-gallery img {
    height: 200px;
  }
}

.gallery-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 8px 20px;
  margin: 5px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: #000 !important;
  color: white !important;
  border-color: #000 !important;
}

.placeholder-img {
  background: linear-gradient(45deg, #e6e6e6, #f7f7f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  height: 250px;
}

@media (max-width: 768px) {
  .placeholder-img {
    height: 200px;
  }
}

 .vraz-hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .vraz-hero-title {
            font-size: 5rem;
            margin-bottom: 20px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            opacity: 0;
            color: #2c3e50;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .vraz-hero-subtitle {
            font-size: 1rem;
            max-width: 800px;
            margin-bottom: 40px;
            opacity: 0;
            color: #7f8c8d;
            font-weight: 500;
        }
        
        .vraz-scroll-indicator {
            position: absolute;
            bottom: 40px;
            font-size: 2rem;
            animation: bounce 2s infinite;
            color: #e74c3c;
        }
        
        .vraz-strength-section {
            min-height: 100vh;
            padding: 100px 20px;
            position: relative;
            background: #fff;
        }

        @media (max-width: 768px) {
            .vraz-strength-section {
                padding: 50px 20px;
            }
        }
        
        .vraz-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 0;
        }
        
        .vraz-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
        }
        
        .vraz-strength-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .vraz-strength-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(100px) scale(0.95);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .vraz-strength-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: #ffffff;
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
            border-color: rgba(231, 76, 60, 0.2);
        }
        
       .vraz-strength-icon {
    width: 100px;
    height: 100px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.25);
    transform: scale(1);   /* ✅ icons are visible by default */
    transition: all 0.3s ease;
}

        .vraz-strength-card:hover .vraz-strength-icon {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
        }
        
        .vraz-strength-title {
            font-size: 28px;
            margin-bottom: 20px;
            text-align: center;
            color: #2c3e50;
        }
        
        .vraz-strength-description {
            color: #7f8c8d;
            line-height: 1.6;
            text-align: center;
            font-size: 18px;
        }
        
        .vraz-parallax-section {
            height: 60vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin: 100px 0;
            background: #f8f9fa;
            border-radius: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .vraz-parallax-bg {
            position: absolute;
            width: 120%;
            height: 120%;
            background: url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            z-index: 1;
            filter: brightness(0.7);
        }
        
        .vraz-parallax-content {
            text-align: center;
            max-width: 800px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(50px);
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vraz-parallax-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #e74c3c;
        }
        
        .vraz-footer {
            text-align: center;
            padding: 100px 20px;
            background: #2c3e50;
            color: white;
            border-radius: 20px 20px 0 0;
            margin-top: 100px;
        }
        
        .vraz-cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 20px;
            margin-top: 30px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
        }
        
        .vraz-cta-button:hover {
            background: #c0392b;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(231, 76, 60, 0.4);
        }
        
        .vraz-counter-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.vraz-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #222;
}

.vraz-counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vraz-counter-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.vraz-counter-item:hover {
  transform: translateY(-8px);
}

.vraz-counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 10px;
}

.vraz-counter-label {
  font-size: 1.1rem;
  color: #555;
}
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }
        
        @media (max-width: 768px) {
            .vraz-hero-title {
                font-size: 3rem;
            }
            
            .vraz-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .vraz-strength-card {
                padding: 25px;
            }
            
            .vraz-strength-icon {
                width: 80px;
                height: 80px;
                font-size: 30px;
            }
            
            .vraz-strength-grid {
                grid-template-columns: 1fr;
            }
            
         
        }


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eaeaea;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #2c3e50;
  text-decoration: none;
}
.brand img {
  height: 36px;
  width: auto;
}
.navbar {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar a { 
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.navbar a:hover { color: #e74c3c; }

.nav-item { position: relative; }
.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: 12px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.2s ease;
  padding: 10px;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}
.dropdown-menu a:hover { background: #f8f9fa; }

/* Mobile nav */
.nav-toggle { display: none; }
@media (max-width: 900px) {
  .navbar { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid #eaeaea; border-radius: 8px; }
}

/* Ensure header can position dropdown */
.header-inner { position: relative; }

/* Mobile nav open state */
@media (max-width: 900px) {
  .site-header { position: sticky; top: 0; }
  .navbar.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 8px 10px 12px;
  }
  .navbar.open a { padding: 12px; border-radius: 8px; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; text-decoration: none; font-weight: 700; }
.btn-primary { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.btn-primary:hover { background: #c0392b; border-color: #c0392b; }
.btn-outline { background: transparent; color: #2c3e50; border-color: #eaeaea; }
.btn-outline:hover { background: #f8f9fa; }

/* Utilities */
.text-right { text-align: right; }

/* Desktop submenu via hover */
@media (min-width: 901px) {
  .nav-item.has-submenu:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}

/* Mobile submenu hidden by default; shown when parent has .open-submenu */
@media (max-width: 900px) {
  .nav-item.has-submenu .dropdown-menu { position: static; border: none; box-shadow: none; padding: 0; margin-top: 0; }
  .nav-item.has-submenu .dropdown-menu { display: none; opacity: 1; visibility: visible; transform: none; }
  .nav-item.has-submenu.open-submenu .dropdown-menu { display: block; }
  .dropdown-toggle::after { transform: rotate(0deg); transition: transform 0.2s ease; }
  .nav-item.has-submenu.open-submenu .dropdown-toggle::after { transform: rotate(180deg); }
}

/* Gallery refinements */
.btn-container { display: flex; justify-content: center; align-items: center; margin-top: 10px; }
.gallery-more { min-width: 220px; }
.tz-gallery .row { row-gap: 10px; }

/* Screen-reader only utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Contact section tweaks */
.form-section button.btn { width: auto; align-self: start; }
.info-section a { color: #1a2a3a; text-decoration: none; }
.info-section a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .form-section button.btn { width: 100%; }
}

/* Lightbox overlay and image scaling overrides */
.baguetteBox-overlay { background: transparent !important; }
.baguetteBox-overlay .full-image img { max-width: 100vw; max-height: 100vh; object-fit: contain; }

/* GLightbox overlay and image scaling */
.glightbox-container, .glightbox-overlay { background: transparent !important; }
.glightbox-clean .gslide-media img { max-width: 100vw; max-height: 100vh; object-fit: contain; }






/* Default Css */

.feature-item{
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

.feature-item::before{
    content: "";
    position: absolute;
    top: -142px;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    height: 70%;
    background-color: #fdebeb;
    border-radius: 50%;
}

.feature-item .ft-icon{position: relative;}

.feature-item .ft-icon i {
    color: #e83b3e;
    background-color: #fff;
    height: 97px;
    width: 100px;
    line-height: 97px;
    border-radius: 50%;
    font-size: 31px;
    transition: .5s;
}

.finix-text h6 {
    color: #e73d40;
    font-size: 18px;
    font-weight: 400;
}
.finix-text h2 {
    font-size: 37px;
    font-weight: 400;
}
.finix-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #606060;
    font-weight: 400;
    font-size: 16px;
}

.feature-item:hover{
    transform: translateY(-10px);
}
.feature-item:hover .ft-icon i {
    background-color:#e73d40 ;
    color: #fff;
}

.top-4{
    margin-top: -30px;
}
.finix-text{
    position: relative;
}
.hamburger-line {
            transition: all 0.3s ease;
        }
        
        .menu-open .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .menu-open .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .menu-open .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .mobile-menu {
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
        }
        
        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .service-card {
            perspective: 1000px;
        }
        
        .service-card-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }
        
        .service-card-front, .service-card-back {
            backface-visibility: hidden;
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .service-card-back {
            transform: rotateY(180deg);
        }

        /* Flip card container */
.perspective {
  perspective: 1000px;
}

/* Inner card */
.preserve-3d {
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

/* Flip on hover */
.group:hover .preserve-3d {
  transform: rotateY(180deg);
}

/* Backface hidden for front and back */
.backface-hidden {
  backface-visibility: hidden;
}

/* Back side rotated */
.rotate-y-180 {
  transform: rotateY(180deg);
}

  .hamburger-line {
            transition: all 0.3s ease;
        }
        
        .menu-open .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .menu-open .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .menu-open .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .mobile-menu {
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
        }
        
        .mobile-menu.open {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .service-card {
            perspective: 1000px;
        }
        
        .service-card-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }
        
        .service-card-front, .service-card-back {
            backface-visibility: hidden;
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .service-card-back {
            transform: rotateY(180deg);
        }

        @media(max-width: 767px) {
          .contact-heading{
            display: flex;
            justify-content: center;
            align-content: center;
          }
        }

        