/* Hero Section - Full Screen with Visible Background */
/* Global Container Override */
.container {
  max-width: 90% !important; /* Make it full width */
  padding-left: 5rem;
  padding-right: 5rem;
}

/* Optional: For larger screens, limit max-width */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    margin: 0 auto;
  }
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1; /* Ensure image is visible */
  animation: 
    kenburns 30s infinite alternate,
    subtleFade 8s ease-in-out infinite;
  will-change: transform; /* Optimize animations */
}

/* Make absolutely sure image is visible */
.hero-image[style*="background-image"] {
  opacity: 1 !important;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(13, 27, 51, 0.85) 0%,
    rgba(13, 27, 51, 0.7) 50%,
    rgba(78, 154, 241, 0.3) 100%
  );
}

/* Content Styling */
#hero .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

#hero h1 span {
  color: #4e9af1;
  position: relative;
  display: inline-block;
}

#hero h1 span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: rgba(78, 154, 241, 0.4);
  z-index: -1;
}

#hero h2 {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
}

#hero p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.7;
}

/* Buttons */
.btn-get-started {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: #fff;
  background: #4e9af1;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(78, 154, 241, 0.4);
}

.btn-get-started:hover {
  background: #3a8ae8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(78, 154, 241, 0.6);
}

.btn-watch-video {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-watch-video i {
  font-size: 2rem;
  line-height: 0;
  margin-right: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-watch-video:hover {
  color: #4e9af1;
}

.btn-watch-video:hover i {
  transform: scale(1.1);
  color: #4e9af1;
}

.services-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  border-left: 5px solid transparent;
}

.service-card .icon {
  font-size: 2rem;
  color: #4e9af1;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(78, 154, 241, 0.3);
  border-left: 5px solid #4e9af1;
  background: #f0f8ff;
}

.service-card.active {
  background: #007bff;
  color: #fff;
}

.service-card.active .icon,
.service-card.active h4,
.service-card.active p {
  color: #fff;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/* About section */

.about-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #4e9af1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  background: rgba(78, 154, 241, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #4e9af1, #3b82f6);
  margin: 0 auto;
  border-radius: 2px;
}

/* Row Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

/* About Card Styling */
.about-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.about-card:hover {
  transform: translateY(-10px);
}

.card-header {
  background: linear-gradient(135deg, #3b82f6 0%, #4e9af1 100%);
  color: white;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-header:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(30deg);
}

.icon-box {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
}

.icon-box i {
  font-size: 40px;
  color: white;
}

.card-header h3 {
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.card-header h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

.location {
  opacity: 0.9;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-body {
  padding: 40px;
}

.company-description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Value Cards Styling */
.value-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.mission {
  border-left: 4px solid #4e9af1;
}

.vision {
  border-left: 4px solid #10b981;
}

.values {
  border-left: 4px solid #f59e0b;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.mission .card-icon {
  background: rgba(78, 154, 241, 0.1);
  color: #4e9af1;
}

.vision .card-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.values .card-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.card-icon i {
  font-size: 28px;
}

.card-content h4 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 15px;
}

.card-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.value-item {
  display: flex;
  align-items: center;
}

.value-item i {
  color: #4e9af1;
  margin-right: 12px;
  font-size: 16px;
}

.value-item span {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
}

/* Expertise Section */
.expertise-section {
  margin-top: 80px;
  text-align: center;
}

.expertise-title {
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.expertise-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #4e9af1, #3b82f6);
  border-radius: 3px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.expertise-tag {
  background: #f0f7ff;
  color: #1e40af;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  border: 1px solid rgba(78, 154, 241, 0.3);
}

/* Numbers counter */
.stat-number {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.stat-number .counter-value {
  display: inline-block;
  min-width: 1.2em;
  text-align: center;
}

.stat-number .counter-plus {
  font-size: 0.6em;
  margin-left: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  vertical-align: super;
  line-height: 1;
}

.stat-number sup {
  font-size: 0.6em;
  position: absolute;
  vertical-align: super;
  margin-left: 2px;
  top: -0.4em;
  right: -0.8em;
  color: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-number sup.show {
  opacity: 1;
}

.expertise-tag:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .value-card {
    flex-direction: column;
  }
  
  .card-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .values-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-item {
    margin-bottom: 15px;
  }
  
  .expertise-tag {
    padding: 10px 20px;
  }
}

/* end */

/* Contact Section */

/* Enhanced Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/img/map-pattern.png') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.contact-section .section-header {
  margin-bottom: 60px;
}

.contact-section .section-description {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* Enhanced Form Styles */
.contact-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(78, 154, 241, 0.1);
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(78, 154, 241, 0.15);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

/* Ensure grid columns behave properly */
.contact-form .row {
  margin-left: -12px;
  margin-right: -12px;
}

.contact-form .col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

.form-control {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9fbfe;
  z-index: 1;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  border-color: #4e9af1;
  box-shadow: 0 0 0 4px rgba(78, 154, 241, 0.15);
  outline: none;
  background: #ffffff;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
  top: -12px;
  left: 15px;
  font-size: 12px;
  background: #ffffff;
  padding: 0 8px;
  z-index: 2;
  color: #4e9af1;
  font-weight: 500;
}

label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #94a3b8;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 15px;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.validation-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
  display: none;
  font-weight: 500;
}

/* Enhanced Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #4e9af1 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
}

.submit-btn: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;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.submit-btn:hover:before {
  left: 100%;
}

.submit-btn i {
  margin-left: 12px;
  transition: transform 0.3s ease;
  font-size: 18px;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Enhanced Contact Info */
.contact-info-con {
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(78, 154, 241, 0.1);
}

.contact-info-con:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(78, 154, 241, 0.15);
}

.info-card {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: rgba(78, 154, 241, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: rgba(78, 154, 241, 0.2);
  transform: scale(1.05);
}

.info-icon i {
  color: #4e9af1;
  font-size: 28px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
  color: #3b82f6;
}

.info-content h4 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-content p {
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 15px;
}

/* Enhanced Business Hours */
.business-hours {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
}

.business-hours h4 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.business-hours h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #4e9af1, #3b82f6);
  border-radius: 4px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
  transition: all 0.3s ease;
}

.business-hours li:hover {
  background: rgba(248, 250, 252, 0.5);
}

.business-hours li span:first-child {
  color: #475569;
  font-weight: 500;
}

.business-hours li span:last-child {
  color: #64748b;
  font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .contact-form,
  .contact-info-con {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-info-con {
    margin-top: 50px;
  }

  .info-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .contact-form,
  .contact-info-con {
    padding: 30px;
  }

  .form-control {
    padding: 16px 18px;
  }

  .submit-btn {
    padding: 16px 30px;
  }

  .info-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .business-hours h4 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact-form,
  .contact-info-con {
    padding: 25px;
  }

  .info-card {
    flex-direction: column;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .business-hours li {
    flex-direction: column;
  }

  .business-hours li span:last-child {
    margin-top: 5px;
  }
}

/* Animations */
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-5%, 5%);
  }
}

@keyframes subtleFade {
  0%, 100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}

/* Particle Effects */

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1; 
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  will-change: transform;
}




@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) translateX(100px);
    opacity: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  #hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px 0;
    text-align: center;
  }
  
  .hero-overlay {
    background: rgba(13, 27, 51, 0.85);
  }
  
  #hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-image {
    animation: none;
    transform: none !important;
  }
  
  .btn-watch-video span {
    display: none;
  }
  
  .btn-watch-video i {
    font-size: 1.75rem;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}