/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* Root Variables */
:root {
    --primary-color: #0099cc;    /* Blue from your logo */
    --secondary-color: #99cc33;  /* Green from your logo */
    --dark-color: #333333;
    --light-color: #ffffff;
}

/* Body Styles */
body {
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #6a6a6a;
  font-size: 14px;
  background-color: #eff2f1;
}

/* Link Styles */
a {
  text-decoration: none;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #2f2f2f;
  text-decoration: underline;
}

a:hover {
  color: #2f2f2f;
  text-decoration: none;
}

a.more {
  font-weight: 600;
}

/* Navigation Bar */
.custom-navbar {
  position: fixed; /* Make the navbar fixed */
  top: 0; /* Position it at the top */
  left: 0; /* Align it to the left */
  right: 0; /* Align it to the right */
  z-index: 1000; /* Ensure it stays above other content */
  width: 100%; /* Full width */
  transition: background-color 0.3s; /* Optional: smooth background transition */
}

body {
  padding-top: 70px; /* Add padding to the top of the body to prevent content from being hidden behind the navbar */
}

/* Logo Styles */
.logo-wrapper {
  position: relative;
  width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 153, 204, 0.1) 0%,
    rgba(153, 204, 51, 0.1) 50%,
    transparent 70%
  );
  filter: blur(8px);
  animation: pulse 3s infinite;
}

.logo-img {
  position: relative;
  height: 50px;
  width: auto;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Logo Hover Effects */
.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
}

.logo-wrapper:hover .logo-bg {
  animation: pulse 1.5s infinite;
}

/* Logo Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Logo After Effect */
.logo-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 153, 204, 0.2),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-wrapper:hover::after {
  opacity: 1;
}

/* Mobile Logo Responsiveness */
@media (max-width: 768px) {
  .logo-wrapper {
    width: 150px;
    height: 50px;
  }
  
  .logo-img {
    height: 40px;
  }
}

/* Navbar Brand */
.custom-navbar .navbar-brand {
  font-size: 32px;
  font-weight: 600;
}

.custom-navbar .navbar-brand>span {
  opacity: .4;
}

/* Navbar Toggler */
.custom-navbar .navbar-toggler {
  border-color: transparent;
}

.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* Navbar Navigation */
@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: #000000 !important;
  opacity: .5;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
}

/* Rest of the CSS continues... */
/* I'll continue adding comments to organize the remaining sections if you'd like */

.custom-navbar .custom-navbar-nav li a:hover {
  opacity: 1;
}

.custom-navbar .custom-navbar-nav li a:hover:before {
  width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-nav li.active a {
  opacity: 1;
}

.custom-navbar .custom-navbar-nav li.active a:before {
  width: calc(100% - 16px);
}

/* Navbar CTA */
.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (min-width: 768px) {
  .custom-navbar .custom-navbar-cta {
    margin-left: 40px !important;
  }
}

.custom-navbar .custom-navbar-cta li {
  margin-left: 0px;
  margin-right: 0px;
}

.custom-navbar .custom-navbar-cta li:first-child {
  margin-right: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Shape Elements */
.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 153, 204, 0.05); /* Light blue from logo */
  top: -200px;
  right: -200px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(153, 204, 51, 0.05); /* Light green from logo */
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.1), rgba(153, 204, 51, 0.1));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #0099cc, #99cc33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Hero Content */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero {
    padding: 60px 0; /* Adjusted padding to move content up for mobile view */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-img-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .shape-1, .shape-2, .shape-3 {
    display: none;
  }
}

/* Hero Excerpt */
.hero .intro-excerpt {
  position: relative;
  z-index: 4;
}

@media (min-width: 992px) {
  .hero .intro-excerpt {
    max-width: 450px;
  }
}

/* Hero Image Wrapper */
.hero .hero-img-wrap {
  position: relative;
}

.hero .hero-img-wrap img {
  position: relative;
  top: 0px;
  right: 0px;
  z-index: 2;
  max-width: 780px;
  left: -20px;
}

/* Hero Image Responsive */
@media (min-width: 768px) {
  .hero .hero-img-wrap img {
    right: 0px;
    left: -100px;
  }
}

@media (min-width: 992px) {
  .hero .hero-img-wrap img {
    left: 0px;
    top: -80px;
    position: absolute;
    right: -50px;
  }
}

@media (min-width: 1200px) {
  .hero .hero-img-wrap img {
    left: 0px;
    top: -80px;
    right: -100px;
  }
}

/* Hero Image After Effect */
.hero .hero-img-wrap:after {
  content: "";
  position: absolute;
  width: 255px;
  height: 217px;
  background-image: url("../images/dots-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: -100px;
  top: -0px;
}

@media (min-width: 1200px) {
  .hero .hero-img-wrap:after {
    top: -40px;
  }
}

/* Button Styles */
.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #ffffff;
  background: #2f2f2f;
  border-color: #2f2f2f;
}

.btn:hover {
  color: #ffffff;
  background: #222222;
  border-color: #222222;
}

.btn:active,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Primary Button */
.btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn.btn-primary:hover {
  background: #314d43;
  border-color: #314d43;
}

/* Secondary Button */
.btn.btn-secondary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--light-color);
}

.btn.btn-secondary:hover {
  background: #f8b810;
  border-color: #f8b810;
}

/* White Outline Button */
.btn.btn-white-outline {
  background: transparent;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn.btn-white-outline:hover {
  border-color: white;
  color: #ffffff;
}

/* Section Title */
.section-title {
  color: #2f2f2f;
}

/* Product Section */
.product-section {
  padding: 100px 0;
  background: #f8f9fa;
}

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid #dee2e6;
  border-radius: 25px;
  background: white;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0099cc;
  color: white;
  border-color: #0099cc;
}

/* Enhanced Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-height: 160px;
    object-fit: contain;
    transition: all 0.5s ease;
    transform: scale(1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 153, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: linear-gradient(135deg, #0099cc, #99cc33);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: linear-gradient(135deg, #99cc33, #0099cc);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-info {
    padding: 20px;
    background: white;
    position: relative;
    z-index: 1;
}

.product-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: #0099cc;
}

.product-category {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-card:hover .product-category {
    color: #99cc33;
}

.btn-inquiry {
  width: 100%;
  padding: 8px;
  border: none;
  background: #99cc33;
  color: white;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-inquiry:hover {
  background: #007aa3;
}

/* Enhanced Modal */
.modal-dialog {
    max-width: 90%;
    width: 1200px;
    margin: 1.75rem auto;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #0099cc, #99cc33);
    padding: 20px 30px;
    border: none;
}

.modal-title {
    color: white;
    font-weight: 600;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.modal-product-img {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 45%;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.modal-product-img img {
    max-height: 400px;
    object-fit: contain;
    width: 100%;
    transition: all 0.5s ease;
}

.modal-product-img:hover img {
    transform: scale(1.05);
}

.modal-product-info {
    padding-left: 20px;
    text-align: left;
    max-width: 50%;
}

/* Responsive Modal */
@media (max-width: 1200px) {
    .modal-dialog {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .modal-body {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-product-img {
        max-width: 100%;
    }
    
    .modal-product-info {
        max-width: 100%;
        padding-left: 0;
    }
    
    .modal-product-img img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .modal-dialog {
        width: 100%;
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-product-img img {
        max-height: 200px;
    }
    
    .modal-title {
        font-size: 20px;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-img-wrap {
    position: relative;
    padding: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-img-main {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateZ(0);
}

.about-img-main:hover {
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px) translateZ(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img-small:hover {
    transform: translateY(0) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: linear-gradient(135deg, #0099cc, #99cc33);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.experience-badge:hover {
    transform: translateZ(40px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-badge .text {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.about-content {
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    color: #0099cc;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #0099cc, #99cc33);
}

.sub-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 153, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #0099cc;
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .icon {
    background: #0099cc;
    color: white;
    transform: rotateY(180deg);
}

.feature-item .content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-item:hover .content h4 {
    color: #0099cc;
}

.feature-item .content p {
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-item:hover .content p {
    color: #333;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0099cc;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat-item:hover .number {
    color: #99cc33;
}

.stat-item .label {
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.stat-item:hover .label {
    color: #333;
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-img-wrap {
        margin-bottom: 40px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
    
    .experience-badge .text {
        font-size: 10px;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
}

/* Enhanced Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.expertise-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #0099cc, #99cc33);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 153, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0099cc;
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.expertise-card:hover .expertise-icon {
    background: #0099cc;
    color: white;
    transform: rotateY(180deg);
}

.expertise-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.expertise-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #0099cc, #99cc33);
    transition: width 0.3s ease;
}

.expertise-card:hover h3::after {
    width: 50px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #99cc33;
    font-weight: bold;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-list li {
    transform: translateX(5px);
}

.expertise-card:hover .expertise-list li::before {
    color: #0099cc;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .expertise-card {
        margin-bottom: 20px;
    }
    
    .expertise-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .expertise-card {
        padding: 20px;
    }
    
    .expertise-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .expertise-card h3 {
        font-size: 18px;
    }
    
    .expertise-list li {
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left  : 30px;
    background: linear-gradient(135deg, #0099cc, #99cc33);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.footer-section {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 20px;
  position: relative;
}

/* Footer Logo */
.footer-logo-img {
  height: 50px;
  margin-bottom: 20px;
}

.company-desc {
  color: #999;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #0099cc;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #0099cc;
}

/* Footer Links */
.footer-l {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-l a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-l a:hover {
  color: #0099cc;
  padding-left: 5px;
}

/* Contact Info */
.footer-c {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-c li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #999;
}

.footer-c li i {
  color: #0099cc;
  margin-right: 15px;
  margin-top: 5px;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 20px;
}

.copyright {
  color: #999;
  font-size: 14px;
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #0099cc;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .footer-section {
      padding: 60px 0 20px;
  }
  
  .footer-bottom-links {
      justify-content: flex-start;
      margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .footer-heading {
      margin-top: 30px;
  }
  
  .copyright,
  .footer-bottom-links {
      text-align: center;
      justify-content: center;
  }
}

/* Contact Form Styles */
.contact-form {
    background: #ffffff; /* White background for the form */
    padding: 30px; /* Padding around the form */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.contact-form .form-label {
    font-weight: 600; /* Bold labels */
    color: var(--dark-color); /* Use the dark color variable for consistency */
}

.contact-form .form-control {
    border: 1px solid #dee2e6; /* Light border */
    border-radius: 5px; /* Rounded corners for inputs */
    padding: 10px; /* Padding inside inputs */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}

.contact-form .form-control:focus {
    border-color: var(--primary-color); /* Change border color on focus */
    box-shadow: 0 0 5px rgba(0, 153, 204, 0.5); /* Subtle shadow on focus */
}

.contact-form .btn-primary {
    background: var(--primary-color); /* Primary color for the button */
    border: none; /* Remove border */
    padding: 12px 20px; /* Padding for button */
    border-radius: 5px; /* Rounded corners for button */
    font-weight: 500; /* Medium font weight */
    transition: background 0.3s ease; /* Smooth transition for background color */
}

.contact-form .btn-primary:hover {
    background: #007aa3; /* Darker shade on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px; /* Reduce padding on smaller screens */
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa; /* Light background for contrast */
}

.contact-info {
    background: #ffffff; /* White background for the info box */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 375px;
}

.contact-info h4 {
    margin-bottom: 10px;
    color: var(--primary-color); /* Use primary color for headings */
}

.contact-info p {
    margin: 10px 0;
    color: #333; /* Dark text for readability */
}

/*.btn-whatsapp {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background-color: #25D366; */
/*    color: white;*/
/*    padding: 10px 15px;*/
/*    border-radius: 5px;*/
/*    text-decoration: none;*/
/*    transition: background-color 0.3s ease;*/
/*    font-weight: 500;*/
/*}*/

.btn-whatsapp i {
    margin-right: 5px;
    font-size: 1.2em;
}

.btn-whatsapp:hover {
    background-color: #128C7E; /* Darker green on hover */
}

/* General button hover effect */
button:not(.btn-whatsapp):not(.btn-inquiry-modal):not(.btn-close):not(.navbar-toggler):hover,
.btn:not(.btn-whatsapp):not(.btn-inquiry-modal):not(.btn-close):not(.navbar-toggler):hover {
    background: linear-gradient(to right, #0099cc, #99cc33);
    color: white;
    border-color: transparent;
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s ease-in-out 1.2s;
    
    
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .custom-navbar {
        background-color: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler {
        background-color: rgba(0, 153, 204, 0.1);
        border: 1px solid rgba(0, 153, 204, 0.2);
        padding: 8px;
        transition: all 0.3s ease;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.25);
        outline: none;
    }

    .custom-navbar .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .custom-navbar .custom-navbar-nav li {
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .custom-navbar .custom-navbar-nav li:last-child {
        border-bottom: none;
    }

    .custom-navbar .custom-navbar-nav li a {
        color: var(--dark-color) !important;
        opacity: 0.9;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 15px;
        display: block;
        transition: all 0.3s ease;
    }

    .custom-navbar .custom-navbar-nav li.active a {
        color: var(--primary-color) !important;
        background: rgba(0, 153, 204, 0.1);
        border-radius: 6px;
    }

    .custom-navbar .custom-navbar-nav li a:hover {
        color: var(--primary-color) !important;
        background: rgba(0, 153, 204, 0.05);
        border-radius: 6px;
        transform: translateX(5px);
    }

    /* Animation for menu items */
    .custom-navbar .navbar-collapse {
        transform-origin: top;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Additional navbar styles for better mobile visibility */
@media (max-width: 991px) {
    .custom-navbar {
        background-color: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.25);
        outline: none;
    }

    /* Animation for menu items */
    .custom-navbar .navbar-collapse {
        transform-origin: top;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

.whatsapp-status {
    position: absolute;
    top: -30px;
    right: 0;
    background-color: #128C7E;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.whatsapp-status::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #128C7E;
}

/* Form Validation Styles */
.form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Loading Spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Alert Animations */
.alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


