* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* Navbar Start */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1020;
  border-top: 2px solid #97c398;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: #000 !important;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  color: #000 !important;
}

.navbar-nav .nav-link.active::before {
  width: calc(100% - 2rem);
  background-color: #FF802B;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #000;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #FF802B;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:not(.dropdown) .nav-link:hover::before {
  width: calc(100% - 2rem);
}

.nav-item.dropdown .nav-link:hover::before {
  width: 50%;
}

.nav-link.active {
  color: black;
}

.nav-link.active::before {
  width: calc(100% - 2rem);
  background-color: #FF802B;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  transition: all 0.3s ease;
  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translateY(10px);
  background-color: white;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  color: #000 !important;
  background-color: white !important;
  position: relative;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #FF802B !important;
  color: white !important;
}

#aboutDropdown.dropdown-toggle::after,
#solutionsDropdown.dropdown-toggle::after,
#awardsDropdown.dropdown-toggle::after {
  display: none !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px 0;
  }
}

.dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: none;
  position: static;
  float: none;
  width: auto;
  margin-top: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: none;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: white !important;
    border: 0;
    box-shadow: none;
  }


  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem 1rem !important;
    color: #000 !important;
    font-weight: 500 !important;
  }

  .dropdown-item:hover {
    background-color: transparent !important;
    color: #FF802B !important;
  }

  .nav-item.dropdown .nav-link::before {
    display: block;
  }
}

/* Navbar End */




/* AboutUs Picture and text */
:root {
  --primary-color: #2c7be5;
  --secondary-color: #00d97e;
  --dark-color: #12263f;
  --light-color: #f8f9fa;
  --highlight-color: #ffc107;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  color: #495057;
  line-height: 1.7;
}

/* Header Section */

.header-image {
  height: 70vh;
  min-height: 500px;
  background: url('./BackImgAbout.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* padding-top: 80px; */

  .header-image {
    will-change: transform;
  }
}

.header-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 123, 229, 0.8) 0%, rgba(0, 217, 126, 0.8) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
}

.header-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.header-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
  color: var(--highlight-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  /* background-color: var(--highlight-color); */
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

.nav-link-custom {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link-custom:hover {
  color: var(--highlight-color);
}

.nav-link-custom.active {
  font-weight: 600;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--highlight-color);
  border-radius: 3px;
}


/* Home / About Us */
.breadcrumb-link:hover {
  color: #ffc107 !important;
  /* Bootstrap 'text-warning' color */
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: white;
  /* Makes the '/' separator white */
}






/* State Section */
/* Section Heading Gradient */
/* Statistics Section Styles */
.stats-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4f0fb 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 212, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;

}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Subtitle ka divider remove karna */
.title-divider {
  display: none;
  /* remove the gradient line */
}

/* Stat Card */
.stat-item {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  /* shadow andar ka add kiya */
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05),
    0 10px 30px rgba(59, 130, 246, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.07),
    0 15px 40px rgba(99, 102, 241, 0.15);
}


/* Stat Card */

.stat-item {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

/* Stat Number with gradient */
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.08);
}

/* Title */
.stat-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

/* Description */
.stat-desc {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.5;
}

/* Icon Styling */
.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.stat-item:hover .icon-wrapper {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transform: rotate(10deg) scale(1.1);
}

.icon-wrapper i {
  font-size: 1.8rem;
  color: #3b82f6;
  transition: all 0.4s ease;
}

.stat-item:hover .icon-wrapper i {
  color: white !important;
}

/* Growth Badge */
.growth-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.growth-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.growth-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 0.5rem;
}

.growth-text {
  color: #64748b;
  font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stats-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-item {
    padding: 2rem 1rem;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper i {
    font-size: 1.5rem;
  }
}

/* State Section End  */




/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: white;
  position: relative;
}

.about-img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  transform: perspective(1000px) rotateY(-5deg);
}

.about-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about-content {
    padding-left: 0;
    padding-top: 3rem;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

/* 
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
} */

.experience-badge {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(44, 123, 229, 0.3);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
}

.btn-explore {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(44, 123, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 123, 229, 0.4);
  color: white;
}

.btn-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-explore:hover::before {
  left: 100%;
}

.industry-badge>div {
  background: none !important;
  /* pura transparent */
  backdrop-filter: none;
  /* blur bhi hata do agar laga ho */
  box-shadow: none;
  /* shadow bhi remove ho */
}



.industry-badge .fw-bold,
.industry-badge small {
  color: white;
  /* make both texts white */
  /* margin-top: 15px; */
}


.about-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  /* matches image corners */
}



/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('https://www.transparenttextures.com/patterns/clean-textile.png');
  opacity: 0.05;
  transform: rotate(30deg);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* 
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
} */

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ffeb3b, #ff9800);
  /* Yellow to Orange contrast */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
  background-color: white;
  color: var(--primary-color);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  /* color: var(--primary-color); */
  /* color: rgb(255, 255, 255); */
  background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .header-image {
    background-attachment: scroll;
  }

  .header-text h1 {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}



/* Our Solar Experts Start*/

        :root {
            --primary: #0A3D62;
            --secondary: #3E7CB1;
            --accent: #FFD60A;
            --light: #F0F4F8;
            --text-light: #6B7280;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }

        body {
            background: var(--light);
            color: var(--text-dark);
            /* font-family: 'Poppins', sans-serif; */
            line-height: 1.7;
        }

        .wrapper {
            max-width: 1400px;
            padding: 0 20px;
            margin: 0 auto;
        }

        .title {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .title.active {
            opacity: 1;
            transform: translateY(0);
        }

        .title h2 {
            font-family: 'Roboto Slab', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
        }

        .title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-size: 1.1rem;
        }

        #about .title {
            margin-top: -40px;
        }

        #expertise .title {
            margin-top: -65px;
        }

        .hero {
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff, var(--light));
        }

        .hero-content {
            display: flex;
            align-items: flex-start;
            gap: 3rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .hero-content.active {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 430px;
            width: 100%;
            aspect-ratio: 4 / 3;
            margin-top: 30px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-image:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.1);
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .hero-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            background: #ffffff;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .stat.active {
            opacity: 1;
            transform: translateY(0);
        }

        .number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .skills {
            padding: 120px 0;
            background: var(--light);
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .card.active {
            opacity: 1;
            transform: translateY(0);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light), #e6eff8);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: var(--primary);
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .card:hover .icon {
            transform: rotate(360deg);
        }

        .card-title {
            font-family: 'Roboto Slab', serif;
            font-size: 1.8rem;
            color: var(--primary);
        }

        .list {
            list-style: none;
        }

        .list-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .list-item i {
            color: var(--accent);
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }

        .modal-header {
            background: var(--primary);
            color: #ffffff;
            width: 100%;
            padding: 1rem 1.5rem;
        }

        .modal-title {
            color: #ffffff;
        }

        .btn-close {
            filter: invert(1);
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-image, .hero-text {
                width: 100%;
            }

            .hero-image {
                height: 380px;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-image {
                height: 330px;
                margin-top: 15px;
            }
        }

        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .hero-image {
                height: 280px;
                margin-top: 10px;
            }
        }
    
/* Our Solar Energy Experts End */

/* Footer Start */

.footer {
  background-color: #1e2b36;
  color: #ced4da;
  padding: 60px 0 30px;
  font-size: 15px;
}

.footer h5 {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: #ced4da;
  text-decoration: none;
}

.footer a:hover {
  color: #28c76f;
}

.footer .social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 50%;
  margin-right: 8px;
  color: #ced4da;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  background-color: #28c76f;
  color: #fff;
  border-color: #28c76f;
}

.footer .gallery img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin: 4px;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid #334756;
  padding-top: 20px;
  font-size: 14px;
}

/* Footer End */