@charset "UTF-8";
/* Hero Section Styles */
.design-hero {
  /* padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  gap: 40px; }

/* .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
} */
/* Left side content */
.hero-text {
  width: 45%;
  padding: 20px 0; }

.hero-title {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 20px; }

.gradient-text {
  background: linear-gradient(45deg, #339AF0, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block; }

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px; }

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px; }

.primary-btn, .portfolio-btn {
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px; }

.primary-btn, .portfolio-btn span {
  font-size: 1.3rem;
  font-weight: 600; }

.primary-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none; }

.portfolio-btn {
  background: white;
  color: var(--text-color);
  border: 2px solid #eee; }

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); }

.portfolio-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

.design-stats {
  display: flex;
  align-items: center;
  gap: 30px; }

.stat-item {
  text-align: center; }

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #339AF0; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1); }

/* Right side content */
/* .hero-visual {
    flex: 0 0 55%;
} */
.design-showcase {
  position: relative;
  width: 100%;
  padding: 2rem; }

.main-animation {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  overflow: hidden; }

#graphic-animation {
  /* width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; */
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-width: 600px; }

.floating-element {
  position: absolute;
  padding: 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite; }

.color-palette {
  top: 20px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 10px; }

.palette-colors {
  display: flex;
  gap: 5px; }

.color-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%; }

.color-dot.color-1 {
  background: #2563eb;
  /* Primary blue */ }

.color-dot.color-2 {
  background: #1e40af;
  /* Darker blue */ }

.color-dot.color-3 {
  background: #3b82f6;
  /* Lighter blue */ }

.design-tools {
  bottom: 40px;
  left: -30px;
  display: flex;
  gap: 15px; }

.design-badge {
  top: 50%;
  right: -40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white; }

@keyframes float {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-20px); } }

/* Responsive Design */
@media (max-width: 992px) {
  .hero-text {
    width: 100%;
    text-align: center;
    padding: 40px 20px; }
  .hero-title {
    font-size: 2.8rem; }
  .hero-cta {
    justify-content: center; }
  .design-stats {
    justify-content: center; } }

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem; }
  .hero-description {
    font-size: 1rem; }
  .hero-cta {
    flex-direction: column;
    align-items: center; }
  .primary-btn, .portfolio-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center; }
  .floating-element {
    display: none; } }

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem; }
  .design-stats {
    flex-direction: column;
    gap: 20px; }
  .stat-divider {
    display: none; }
  .stat-item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .stat-item:last-child {
    border-bottom: none; } }

/* Design Services Showcase Section */
.design-services-showcase {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden; }

.showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.2; }

.section-title .highlight {
  display: block;
  color: var(--primary-color); }

.section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.showcase-image {
  grid-column: span 3;
  position: relative;
  margin: 30px 0; }

.showcase-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

.floating-badge {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite; }

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1; }

.badge-text {
  font-size: 0.9rem;
  opacity: 0.9; }

.service-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden; }

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

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

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center; }

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color); }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px; }

.service-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center; }

.service-tools span {
  padding: 5px 15px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.9rem; }

@keyframes float {
  0%, 100% {
    transform: translateY(-50%); }
  50% {
    transform: translateY(-60%); } }

/* Responsive Design */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); }
  .showcase-image {
    grid-column: span 2; }
  .section-title {
    font-size: 2rem; } }

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; }
  .showcase-image {
    grid-column: span 1; }
  .floating-badge {
    right: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(50%); }
  .section-title {
    font-size: 1.8rem; } }

/* Design Solutions Section Styles */
.design-solutions {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden; }

.solutions-header {
  text-align: center;
  margin-bottom: 60px; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 10px; }

.section-subtitle {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 600; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.solution-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease; }

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

.solution-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease; }

.solution-card:hover .solution-icon {
  transform: scale(1.1);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); }

.solution-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease; }

.solution-card:hover .solution-icon i {
  color: white; }

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px; }

.solution-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px; }

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

.solution-features li {
  padding: 8px 0;
  color: #666;
  display: flex;
  align-items: center;
  font-size: 0.95rem; }

.solution-features li::before {
  content: "→";
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold; }

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left; }

.solution-card:hover .hover-overlay {
  transform: scaleX(1); }

/* Responsive Design */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr); }
  .section-title {
    font-size: 2rem; }
  .section-subtitle {
    font-size: 1.5rem; } }

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr; }
  .solution-card {
    padding: 30px 25px; }
  .section-title {
    font-size: 1.8rem; }
  .section-subtitle {
    font-size: 1.3rem; } }

/* UI/UX Design Services Section Styles */
.ui-ux-services {
  padding: 100px 0;
  background: #f8f9fa; }

.ui-ux-header {
  text-align: center;
  margin-bottom: 60px; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 10px; }

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

.ui-ux-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.ui-ux-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; }

.ui-ux-card:hover {
  transform: translateY(-5px); }

.card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px; }

.ui-ux-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px; }

.ui-ux-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5; }

.ui-ux-image {
  text-align: center;
  margin-top: 40px; }

.ui-ux-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

/* Responsive Design */
@media (max-width: 992px) {
  .ui-ux-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
  .ui-ux-grid {
    grid-template-columns: 1fr; }
  .section-title {
    font-size: 2rem; }
  .section-description {
    font-size: 1rem; } }

/* About Us Section Styles */
.about-us {
  padding: 100px 0;
  background: #f8f9fa; }

.about-header {
  text-align: center;
  margin-bottom: 60px; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 10px; }

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

.about-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.about-text {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; }

.about-text:hover {
  transform: translateY(-5px); }

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px; }

.about-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5; }

.about-image {
  text-align: center;
  margin-top: 40px; }

.about-image img {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

.about-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.2rem;
  color: var(--text-color); }

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr); }
  .section-title {
    font-size: 2rem; }
  .section-description {
    font-size: 1rem; } }

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr; }
  .section-title {
    font-size: 1.8rem; }
  .section-description {
    font-size: 0.9rem; } }

/*# sourceMappingURL=gra-des.css.map */