* {
  font-family: 'Segoe UI', sans-serif;
}

/* Header and Navigation Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* .logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    gap: 8px;
}

.logo img {
    width: 32px;
    height: 32px;
} */

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
}

.help {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    background-color: #e6e9fd;
    padding: 10px;
    border-radius: 50%;
}

.icon-circle img {
    width: 20px;
    height: 20px;
}

.contact-info span {
    display: block;
    font-size: 12px;
    color: #666;
}

.contact-info strong {
    font-size: 14px;
}

.discover-btn {
    border: 1px solid #1d1d1f;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #1d1d1f;
    font-weight: bold;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #1a1a1a;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        background-color: #f8f9fa;
        color: #377dff;
    }
    
    .help {
        display: none;
    }
    
    .discover-btn {
        display: none;
    }
}

/* Add overlay when menu is open */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* About Section Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.left-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.left-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.content {
    flex: 1;
    padding: 20px;
}

.label {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h1 span {
    color: #007bff;
}

.desc {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.icon img {
    width: 100%;
    height: auto;
}

h3 {
    margin-bottom: 10px;
    color: #333;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
    .left-image, .content {
        width: 100%;
    }
}

/* RESET / GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION WRAPPER */
.services-section {
  background: #f8f9fc; /* Soft background behind the cards (adjust as needed) */
  padding: 70px 0;     /* Top/bottom spacing for section */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; /* Center text and items */
}

/* SECTION LABEL (CREATIVE SERVICES) */
.section-label {
  font-size: 14px;
  font-weight: 700;
  color: #0051ff;     /* Accent color for label */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* MAIN TITLE */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.3;
}

.section-title span {
  color: #0051ff;     /* Highlighted color for "Digital" */
}

/* CARDS WRAPPER */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;          /* Space between cards */
  justify-content: center;
}

/* SINGLE CARD */
.service-card {
  background-color: #fff;
  flex: 0 1 calc(33.333% - 30px); /* 3 cards in one row */
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ICON BOX */
.icon-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* CARD TITLE */
.card-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

/* CARD DESCRIPTION */
.card-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* CARD BUTTON */
.card-button {
  display: inline-block;
  color: #0051ff;
  background: #eef3ff;
  border: 2px solid #0051ff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.card-button:hover {
  background: #0051ff;
  color: #fff;
}

/* RESPONSIVE (adjust card width on smaller screens) */
@media (max-width: 992px) {
  .service-card {
    flex: 0 1 calc(50% - 30px); /* 2 cards per row on medium screens */
  }
}

@media (max-width: 576px) {
  .service-card {
    flex: 0 1 100%; /* 1 card per row on small screens */
    max-width: 100%;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.faq-left {
  flex: 1;
}

.faq-subheading {
  color: #007bff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-title {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #2d3748;
  font-weight: 700;
}

.faq-title span {
  color: #007bff;
  position: relative;
}

.faq-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 123, 255, 0.1);
  z-index: -1;
}

.faq-description {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.accordion {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: fit-content;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #f8f9fa, white);
}

.accordion-header:hover {
  background: linear-gradient(to right, #e6f3ff, white);
}

.accordion-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #007bff;
  color: white;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-header h4 {
  margin: 0;
  font-size: 18px;
  color: #2d3748;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

.accordion-body {
  padding: 0 20px 20px;
  display: none;
}

.accordion-body p {
  margin: 0;
  color: #4a5568;
  line-height: 1.7;
  font-size: 16px;
  padding-left: 47px;
}

.accordion-item.active .accordion-header {
  background: linear-gradient(to right, #e6f3ff, white);
}

.accordion-item.active .accordion-header .icon {
  background-color: #0051ff;
  transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
  display: block;
}

.faq-right {
  position: relative;
  flex: 1;
  padding: 20px;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
  min-width: 200px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f0f7ff;
  border-radius: 10px;
  color: #2196F3;
  font-size: 24px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-number {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.badge-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Make the badge responsive */
@media (max-width: 768px) {
  .faq-right {
    padding: 15px;
  }
  
  .badge {
    bottom: 20px;
    right: -15px;
    padding: 15px;
    min-width: 180px;
  }
  
  .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .badge-number {
    font-size: 18px;
  }
  
  .badge-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .accordion-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  
  .accordion-header h4 {
    font-size: 16px;
  }
  
  .accordion-body p {
    font-size: 15px;
  }
}

/* Experts Section Styles */
.experts-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.experts-section h5 {
  color: #5890FF;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.experts-section h1 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

.experts-section h1 span {
  color: #5890FF;
  position: relative;
}

.experts-section h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(88, 144, 255, 0.1);
  z-index: -1;
}

.experts-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.expert-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  width: 250px;
  transition: 0.3s ease;
  text-align: center;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expert-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.expert-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.expert-card p {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Make the experts section responsive */
@media (max-width: 768px) {
  .experts-section {
    padding: 40px 15px;
  }
  
  .experts-section h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .expert-card {
    width: 100%;
    max-width: 280px;
  }
}

/* Stats Section */
.stats-container {
  background-color: #1a73e8;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.stat-box {
  color: #fff;
  text-align: center;
}

.stat-box i,
.stat-box img {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.stat-box h2 {
  margin: 10px 0 5px;
  font-size: 24px;
}

.stat-box p {
  font-size: 14px;
  color: #d2dfff;
}

/* Form Section */
.form-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  margin: 40px auto;
}

.form-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.form-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(53, 109, 232, 0.2), transparent);
  z-index: 2;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.95);
}

.form-container {
  position: relative;
  max-width: 550px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: 40px;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2));
}

.mini-title {
  color: #356de8;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.mini-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #356de8;
}

.form-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.3;
}

.form-title span {
  color: #356de8;
  position: relative;
}

.form-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(53, 109, 232, 0.1);
  z-index: -1;
}

.form-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

input,
textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
}

input:focus,
textarea:focus {
  border-color: #356de8;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(53, 109, 232, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  background: linear-gradient(45deg, #356de8, #1a4ba3);
  color: #fff;
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

button[type="submit"]::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;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(53, 109, 232, 0.3);
}

button[type="submit"]:hover::before {
  left: 100%;
}

@media (max-width: 992px) {
  .form-section {
    padding: 60px 20px;
    margin: 20px;
  }

  .form-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: -100px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .form-container {
    margin: 0 auto;
    max-width: 100%;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
  }

  .form-image {
    height: 250px;
    margin-bottom: -50px;
  }

  .form-title {
    font-size: 28px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* Process Section */
.process-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.process-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: left;
}

.process-section .subtitle {
  font-size: 14px;
  color: #356de8;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.process-section .title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 40px;
  color: #111;
  text-align: center;
}

.process-section .title span {
  color: #356de8;
  position: relative;
}

.process-section .title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(53, 109, 232, 0.1);
  z-index: -1;
}

.process-section .cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.process-section .card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 40px 30px;
  flex: 1;
  min-width: 250px;
  max-width: 270px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.process-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(53, 109, 232, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(53, 109, 232, 0.1);
}

.process-section .card:hover::before {
  opacity: 1;
}

.process-section .card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.process-section .card:hover img {
  transform: scale(1.1);
}

.process-section .card .step {
  color: #356de8;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  text-align: left;
}

.process-section .card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  text-align: left;
}

.process-section .card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 992px) {
  .process-section .cards {
    justify-content: flex-start;
  }
  
  .process-section .card {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 60px 0;
  }
  
  .process-section .title {
    font-size: 28px;
  }
  
  .process-section .card {
    padding: 30px 20px;
  }
}

/* Footer Styles */
/* .footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  padding: 0 15px;
}

.footer-col .logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-col .logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-col .logo h3 {
  color: #fff;
  font-size: 24px;
  margin: 0;
}

.footer-col p {
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #007bff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #007bff;
  height: 2px;
  width: 50px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #007bff;
  padding-left: 5px;
}

.subscribe-form {
  display: flex;
  margin-top: 20px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 4px 0 0 4px;
}

.subscribe-form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #0056b3;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
}

/* Responsive Styles 
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-col {
    padding: 0;
    margin-bottom: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}*/

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #356de8;
  color: white;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(53, 109, 232, 0.3);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #1a4ba3;
  transform: translateY(-5px);
}

.scroll-to-top i {
  font-size: 20px;
}  