@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --accent-color: #ff3366;
  --accent-secondary: #00d2ff;
  --card-glow: rgba(255, 51, 102, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: #0f0c29;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Global Icon Animations */
i {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Subtle floating for all icons in main sections */
section i, footer i, .top-bar i {
  animation: subtleFloat 6s infinite ease-in-out;
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-4px) rotate(3deg); }
  66% { transform: translateY(-2px) rotate(-3deg); }
}

/* Enhanced interaction for icons within glass cards */
.glass:hover i {
  animation: iconActivePulse 1.5s infinite ease-in-out !important;
  filter: drop-shadow(0 0 10px var(--accent-secondary));
}

@keyframes iconActivePulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.25) rotate(5deg); }
}


/* Animated Gradient Background */
.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #0f0c29;
}

.blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  animation: float 20s infinite alternate ease-in-out;
  opacity: 0.6;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #8e2de2;
  top: 40%;
  left: 40%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.2); }
  100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Glassmorphism Utilities */
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.glass-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.glass-btn:hover i {
  transform: scale(1.2) rotate(10deg);
}

.glass-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s;
  pointer-events: none;
}

.glass-btn:hover::after {
  left: 120%;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.glass-btn.primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  border: none;
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.glass-btn.primary:hover {
  background: linear-gradient(135deg, #ff4c79, #33dfff);
  box-shadow: 0 0 30px rgba(255, 51, 102, 0.6), 0 0 60px rgba(0, 210, 255, 0.3);
}

.glass-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-secondary);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Layout */
.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top Bar */
.top-bar {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  padding: 10px 0;
  font-size: 1rem;
  z-index: 200;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-left a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.top-bar-left a:hover {
  color: var(--accent-secondary);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 20px;
}

.btn-small i {
  margin-left: 5px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 0 0 20px 20px;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-secondary);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  padding: 10px 0; /* Extends hover area */
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
  z-index: 300;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-secondary);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}

.hero-content {
  padding: 60px;
  max-width: 1200px;
}

.hero h1 {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Services Section */
.section-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 70px;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
  border-radius: 2px;
}

.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 50px 35px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--card-glow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.icon-3d {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  animation: float3D 5s infinite ease-in-out;
}

@keyframes float3D {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.service-card:hover .icon-3d {
  animation: pulse3D 1.5s infinite ease-in-out;
  filter: drop-shadow(0 15px 25px var(--accent-secondary)) brightness(1.1);
}

@keyframes pulse3D {
  0%, 100% { transform: scale(1) translateY(-15px); }
  50% { transform: scale(1.15) translateY(-20px); }
}


.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.learn-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.learn-more:hover {
  transform: translateX(5px);
}

/* Trust Strip */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  margin: 40px auto;
  border-radius: 50px;
  flex-wrap: wrap;
  max-width: 900px;
}

.trust-item {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-window {
  width: 350px;
  height: 500px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  pointer-events: none;
}

.chat-window.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  padding: 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 1.2rem;
}

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}

.chat-msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--accent-color);
  border-bottom-right-radius: 4px;
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 10px;
}

.chat-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 10px 15px;
  color: white;
  outline: none;
}

.chat-input-area input::placeholder {
  color: var(--text-secondary);
}

.chat-input-area button {
  background: var(--accent-secondary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #0f0c29;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
}

.chat-input-area button:hover {
  transform: scale(1.05);
}

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

/* Footer */
.footer {
  margin-top: 100px;
  border-radius: 40px 40px 0 0;
  padding: 80px 0 40px;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section h4 {
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-secondary);
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section p a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--glass-border);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-links {
  margin-top: 15px;
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  margin: 0 5px;
}

.legal-links a:hover {
  color: var(--accent-secondary);
}

/* Pre-Footer CTA */
.pre-footer-cta {
  margin: 80px auto;
  max-width: 1800px;
  padding: 60px;
  text-align: center;
  border-radius: 30px;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.pre-footer-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
}

/* Why Choose Us */
.why-choose {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 40px;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--card-glow);
}

.why-card i {
  font-size: 4.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 51, 102, 0.4));
}

/* Featured Service */
.featured-service {
  padding: 100px 0;
}

.featured-box {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
}

.featured-content {
  flex: 1;
}

.featured-image {
  flex: 1;
}

.featured-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Process Section */
.process {
  padding: 100px 0;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step {
  position: relative;
  padding: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}

.testimonial-card {
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
}

.testimonial-card p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* Blog Preview */
.blog-preview {
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

/* Local SEO Block */
.local-seo-block {
  padding: 60px 0;
  text-align: center;
  opacity: 0.7;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-content { flex-direction: column; gap: 10px; text-align: center; }
  .top-bar-left { flex-direction: column; gap: 10px; }
  .hero h1 { font-size: 2.5rem; }
  .nav-links { display: none; }
  .chat-window { width: 300px; height: 400px; }
  .footer-content { text-align: center; justify-items: center; }
  .footer-section p { justify-content: center; }
  .social-links { justify-content: center; }
  .cta-flex { flex-direction: column; text-align: center; }
  .pre-footer-cta h2 { font-size: 1.8rem; }
  .featured-box { flex-direction: column; padding: 30px; }
  
  /* Grid Overrides */
  .services-grid, .why-grid, .portfolio-grid, .blog-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .process-steps {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 1024px) {
  .services-grid, .why-grid, .portfolio-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Modularized Styles from index.php */
.icon-3d-model {
  width: 180px;
  height: 180px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 999 !important;
}

.icon-3d-model model-viewer {
  width: 180px;
  height: 180px;
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000 !important;
}

.fallback-icon {
    font-size: 3rem;
    color: var(--accent-secondary);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px var(--accent-secondary));
    transition: opacity 0.3s ease;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    padding: 0 80px;
    padding-top: 100px;
    max-width: 1300px;
    pointer-events: none;
}

.hero-content h1, .hero-content p, .hero-btns {
    pointer-events: auto;
}

.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-secondary);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2000 !important;
    transition: all 0.3s ease;
    user-select: none;
}

.slider-arrow:hover {
    background: rgba(0, 210, 255, 0.2);
    border-color: #00d2ff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Full-Width Layout Overrides */
nav.glass {
    max-width: 1800px !important;
    width: calc(100% - 80px) !important;
}

.top-bar {
    background: rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 768px) {
    .slider-arrow { display: none; }
    .hero-content { padding: 0 20px; padding-top: 60px; text-align: center; }
}




