
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Center portfolio images */
.portfolio-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* ============================================
   Mohtawa Website - Main Stylesheet
   Design System: Modern Tech-Forward Minimalism
   ============================================ */

/* ============================================
   CSS Variables - Brand Colors & Theme
   ============================================ */
:root {
  /* Mohtawa Brand Colors */
  --mohtawa-purple: #6B4C9A;
  --mohtawa-dark-purple: #2D1B4E;
  --mohtawa-cyan: #00D9FF;
  --mohtawa-light: #F8F9FA;
  
  /* Semantic Colors */
  --primary: #6B4C9A;
  --primary-foreground: #F8F9FA;
  --background: #F8F9FA;
  --foreground: #1A1A1A;
  --card: #FFFFFF;
  --card-foreground: #1A1A1A;
  --secondary: #E8E8F0;
  --secondary-foreground: #1A1A1A;
  --muted: #D0D0D8;
  --muted-foreground: #666666;
  --accent: #00D9FF;
  --accent-foreground: #1A1A1A;
  --destructive: #EF4444;
  --border: #E0E0E8;
  --input: #FFFFFF;
  --ring: #6B4C9A;
  
  /* Typography */
  --font-display: 'Poppins', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.65rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

/* ============================================
   Global Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--mohtawa-dark-purple);
}

/* ============================================
   Layout Components
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   Navigation
   ============================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--mohtawa-dark-purple);
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--mohtawa-purple), var(--mohtawa-dark-purple));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-logo-img {
  width: 48px;
  height: auto;
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 2rem 10rem;
  background: url('../images/hero-bg.png') center center/cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  animation: fadeInLeft 0.7s ease-out;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0,217,255,0.92);
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,217,255,0.18);
}

.hero-text h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.7s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hero-glow-1 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(0, 217, 255, 0.2);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: -1;
}

.hero-glow-2 {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background-color: rgba(107, 76, 154, 0.2);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: -1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--mohtawa-purple);
  color: white;
}

.btn-primary:hover {
  background-color: var(--mohtawa-dark-purple);
  box-shadow: 0 10px 25px rgba(107, 76, 154, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--mohtawa-cyan);
  color: var(--mohtawa-cyan);
}

.btn-secondary:hover {
  background-color: var(--mohtawa-cyan);
  color: white;
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--mohtawa-dark-purple);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}


/* ============================================
   About Section 
   ============================================ */

.about-section {
  
  text-align: center;
  padding: 75px 20px;

}


.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.description {
  max-width: 1150px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 275px;
  background: #4e2a84;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.icon-circle {
  width: 60px;
  height: 60px;
  background: #59c8ec;
  border-radius: 50%;
  margin: -30px auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 8px;
  color: white;
}

.card p {
  padding: 0 15px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: white;
}
/* ============================================
   Mission & Vision Section
   ============================================ */
.mission-vision-section {
  background-color: white;
  text-align: center;
  padding: 60px 20px;

}

.mission-vision-section .section-title {
  font-size: 36px;
  margin-bottom: 50px;
}

.mv-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.mv-item {
  width: 220px;
  text-align: center;
  color: #333;
}

.mv-item h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #2f2f2f;
}

.mv-item p {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
  color: #666;
}

.mv-icon {
  width: 50px;
  height: 50px;
}

.mv-image-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.mv-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-circle {
  width: 250px;
  height: 250px;
  background: #392c63;
  position: relative;
}

.center-circle .circle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-circle .circle-overlay img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.center-circle .circle-overlay h3 {
  margin: 0;
  font-size: 18px;
}

.center-circle .circle-overlay p {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
  color: #e0e0e0;
  text-align: center;
}

/* ============================================
   Services Section
   ============================================ */
/*.services {
  
  background-color: white;
}
*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  background-color: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--mohtawa-cyan);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--mohtawa-purple), var(--mohtawa-dark-purple));
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  object-fit: contain;
  padding: 0.5rem;
  box-sizing: border-box;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--mohtawa-dark-purple);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}






.what-we-do {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #2f2f2f;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.dots span.active {
  background: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  grid-template-rows: auto auto;
  gap: 30px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-text {
  text-align: left;
  padding: 10px 20px;
  border-top: 2px solid #eee;
}

.service-text h3 {
  font-size: 20px;
  color: #2f2f2f;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-text p {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

.service-number {
  font-size: 28px;
  font-weight: bold;
  color: #cce9f9;
  font-family: 'Arial Black', sans-serif;
}

.text-right {
  text-align: left;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-box img {
  width: 64px;
  height: 64px;
}

.purple {
  background: #8e49a4;
}

.dark {
  background: #392c63;
}




/* ============================================
   Team Section
   ============================================ */

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.team-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.team-dots span.active {
  background: #392c63;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  max-width: 350px;
  text-align: center;
}

.team-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 18px;
  font-weight: bold;
  color: #6a2e8c;
  margin-bottom: 4px;
}

.member-role {
  font-weight: 600;
  font-size: 14px;
  color: #2f2f2f;
  margin-bottom: 8px;
}

.member-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
  /*background-color: white;*/
  background: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  padding: 2rem;
  background: linear-gradient(135deg, var(--mohtawa-light), white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  border-color: var(--mohtawa-cyan);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
  transform: translateY(-5px);
}

.portfolio-card h3 {
  color: var(--mohtawa-dark-purple);
  margin-bottom: 0.5rem;
}

.portfolio-card .website {
  color: var(--mohtawa-cyan);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.portfolio-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.portfolio-card .view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mohtawa-purple);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.portfolio-card:hover .view-link {
  gap: 0.75rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: linear-gradient(to right, rgba(107, 76, 154, 0.1), rgba(0, 217, 255, 0.1));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background-color: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-author .name {
  font-weight: bold;
  color: var(--mohtawa-dark-purple);
  margin-bottom: 0.25rem;
}

.testimonial-author .role {
  font-size: 0.875rem;
  color: var(--mohtawa-cyan);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-card-modern {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(107, 76, 154, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 76, 154, 0.05);
  text-align: center;
}

.contact-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mohtawa-purple), var(--mohtawa-cyan));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(107, 76, 154, 0.15);
  border-color: rgba(0, 217, 255, 0.1);
}

.contact-card-modern:hover::before {
  opacity: 1;
}

.contact-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 20px rgba(107, 76, 154, 0.15);
}

.contact-icon-wrapper.location-icon {
  background: linear-gradient(135deg, #6b4c9a 0%, #2d1b4e 100%);
}

.contact-icon-wrapper.phone-icon {
  background: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
}

.contact-icon-wrapper.email-icon {
  background: linear-gradient(135deg, #6b4c9a 0%, #7c5ba6 100%);
}

.contact-card-modern:hover .contact-icon-wrapper {
  transform: scale(1.1) rotateZ(5deg);
  box-shadow: 0 12px 30px rgba(107, 76, 154, 0.25);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.contact-card-title {
  color: var(--mohtawa-dark-purple);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.contact-card-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.contact-card-subtext {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.contact-card-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: 1rem;
}

.contact-card-btn.phone-btn {
  background: linear-gradient(135deg, #00d9ff 100%, #00a8cc 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.2);
}

.contact-card-btn.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.35);
}

.contact-card-btn.email-btn {
  background: linear-gradient(135deg, #6b4c9a 0%, #7c5ba6 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(107, 76, 154, 0.2);
}

.contact-card-btn.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 76, 154, 0.35);
}

.contact-cta {
  text-align: center;
  padding-top: 1rem;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background-color: var(--mohtawa-dark-purple);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--mohtawa-cyan);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--mohtawa-cyan);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mohtawa-dark-purple);
  font-weight: bold;
}

.footer-logo-img {
  width: 128px;
  height: auto;
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 217, 255, 0.2);
  border-radius: 50%;
  color: var(--mohtawa-cyan);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link svg {
  width: 1.3rem;
  height: 1.3rem;
}

.social-link:hover {
  background-color: var(--mohtawa-purple);
  color: var(--mohtawa-dark-purple);
  transform: translateY(-3px);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .mission-icon {
    width: 6rem;
    height: 6rem;
    font-size: 2.5rem;
  }

  .icon-grid {
    display: none;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .about-grid,
  .mission-grid,
  .services-grid,
  .team-grid,
  .portfolio-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 2rem 0;
  }
}


.project-section {
  padding: 60px 20px;
  background-color: #fff;
}

.project-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.project-text {
  flex: 1 1 45%;
}

.project-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.project-text a {
  font-size: 16px;
  color: #0077cc;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 15px;
}

.project-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.project-image {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.project-image .main-img {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.project-image .overlay-img {
  width: 180px;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(10deg) translate(30%, -30%);
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .project-content {
    flex-direction: column;
  }

  .project-text, .project-image {
    flex: 1 1 100%;
  }


  .project-image .main-img {
    width: 100%;
    max-width: none;
  }
}


.creative-portfolio-section {
  /*padding: 60px 20px;
  background: #fff;*/
  max-width: 1200px;
  margin: 0 auto;
}

.creative-portfolio-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.creative-portfolio-title h2 {
  font-size: 36px;
  color: #2f2f2f;
  line-height: 1.2;
}

.creative-portfolio-dots {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.creative-portfolio-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.creative-portfolio-dots span.active {
  background: #6a2e8c;
}

.creative-portfolio-description {
  max-width: 600px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.creative-portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.creative-portfolio-card {
  width: 300px;
  text-align: left;
}

.creative-portfolio-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.creative-portfolio-card h3 {
  font-size: 18px;
  color: #2f2f2f;
  margin-bottom: 5px;
}

.creative-portfolio-card p {
  font-size: 15px;
  color: #6a2e8c;
  display: flex;
  align-items: center;
  gap: 5px;
}

.creative-portfolio-link-icon {
  font-size: 18px;
}
@media (max-width: 768px) {
  .creative-portfolio-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .creative-portfolio-description {
    max-width: 100%;
    margin-top: 20px;
  }
}

.unique-selling {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.unique-selling-container {
  max-width: 1200px;
  margin: 0 auto;
}

.usp-box {
  background-color: #392c63;
  color: #fff;
  padding: 40px;
  border-radius: 30px 0 0 30px;

  margin-bottom: 40px;
}

.usp-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.usp-box p {
  font-size: 16px;
  line-height: 1.6;
}

.usp-images {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.usp-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.usp-quote {
  display: flex;
  align-items: flex-start;
  gap: 20px;

  margin-top: 20px;
}

.usp-quote .quote-icon {
  font-size: 60px;
  color: #6a2e8c;
  line-height: 1;
}

.usp-quote p {
  font-size: 17px;
  color: #444;  
  line-height: 1.6;
}
@media (max-width: 768px) {
  .usp-box {
    border-radius: 30px;
    text-align: center;
  }

  .usp-quote {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .usp-images  {
    place-content: center;

  }

}

.our-featured-projects {
  padding: 60px 20px;
  /*background: #fff;*/
  font-family: 'Segoe UI', sans-serif;
}

.our-featured-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.our-featured-projects-text {
  flex: 1 1 300px;
}

.our-featured-projects-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #333;
}

.our-featured-projects-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.our-featured-projects-visuals {
  flex: 1 1 600px;
}

.project-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.project-image img {
  width: 250px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.project-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.project-links h3 {
  font-size: 18px;
  color: #2f2f2f;
  margin: 0;
}

.project-links p {
  font-size: 15px;
  color: #6a2e8c;
}

.project-links span {
  font-size: 16px;
  margin-right: 6px;
}

.project-thumbnails {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.project-thumbnails img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-media-works {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.social-media-works .section-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #2f2f2f;
}

.social-media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-media-item {
  max-width: 350px;
  text-align: center;
}

.social-media-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}

.social-media-item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.social-media-item img:hover {
  transform: scale(1.03);
}
/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  place-items: center;
}

.clients-grid img {
  width: auto;
  height: auto;
  object-fit: cover;
  max-width: 300px;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}