/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- About
- Services
- Details
- Projects
- Works
- Testimonials
- Questions
- Contact
- Footer 
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds, navbar - black #24262a
- Backgrounds - light gray #f7f9fb
- Buttons, icons - blue #960ba8
- Headings text - black #24262a
- Body text - dark gray #4d5055
******************************************/
/* Enhanced Header Styles */
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #960ba8;
  text-decoration: none;
  letter-spacing: -0.5px;
  z-index: 1001;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #000000;
}

.nav-cta {
  background: #960ba8;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #960ba8;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.3s ease;
    font-size: 1.2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger animation for menu items */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .logo {
    font-size: 1.3rem;
  }
}

/* Tablet Styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

/* Very small screens */
@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 2.5rem;
  }
}

/* Header Styles */
/* Header Section */
.header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f8fafc;
  padding-top: 80px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.header-content {
  max-width: 500px;
}

.header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.822);
  color: #960ba8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.header-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #1a202c;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.header-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.header-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #960ba8;
  color: white;
}

.btn-primary:hover {
  background: #1a202c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 55, 72, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
}

/* Header Visual Elements */
.header-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 400px;
}

.visual-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

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

.profile-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 15px 6px rgba(128, 0, 128, 0.6);
  min-height: 200px;
  width: 100%;
  color: white;
  text-align: center;
}

.profile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* AI Icon/Avatar */
.ai-avatar {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.ai-avatar i {
  font-size: 40px;
  color: #fff;
}

/* Profile text */
.profile-text h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.95;
}

.profile-text p {
  margin: 5px 0 0 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Alternative: Remove image container entirely */
.profile-image {
  display: none;
}

.stats-card {
  background: #2d3748;
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stats-text {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.cta-card {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.cta-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

/* Bottom Banner */
.bottom-banner {
  background: #1a202c;
  color: white;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  flex: 1;
}

.banner-icon {
  width: 50px;
  height: 50px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.banner-message {
  font-size: 1.1rem;
  line-height: 1.5;
}

.banner-message a {
  color: #ef4444;
  text-decoration: none;
}

.banner-cta {
  background: white;
  color: #1a202c;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-content>* {
  animation: fadeInUp 0.6s ease-out forwards;
}

.header-content>*:nth-child(1) {
  animation-delay: 0.1s;
}

.header-content>*:nth-child(2) {
  animation-delay: 0.2s;
}

.header-content>*:nth-child(3) {
  animation-delay: 0.3s;
}

.header-content>*:nth-child(4) {
  animation-delay: 0.4s;
}

.visual-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

.visual-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
  opacity: 0;
}

.visual-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.7s forwards;
  opacity: 0;
}

/* Mobile Responsiveness - Tablet */
@media (max-width: 1024px) {
  .header-container {
    gap: 2rem;
  }

  .header-title {
    font-size: 2.5rem;
  }

  .header-visual {
    height: 350px;
  }

  .profile-image {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }
}

/* Mobile Responsiveness - Mobile */
@media (max-width: 768px) {
  .header {
    padding: 2rem 0;
    min-height: auto;
  }

  .header-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .header-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .header-subtitle {
    font-size: 1.1rem;
  }

  .header-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .header-visual {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .profile-card {
    grid-row: span 1;
    padding: 2rem;
  }

  .profile-image {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .stats-card,
  .cta-card {
    padding: 1.5rem;
  }

  .stats-number {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 0.9rem;
  }

  /* Banner Mobile */
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .banner-text {
    flex-direction: column;
    gap: 1rem;
  }

  .banner-message {
    font-size: 1rem;
  }

  .banner-cta {
    width: 100%;
    max-width: 250px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .header {
    padding: 1.5rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  .header-title {
    font-size: 1.75rem;
  }

  .header-subtitle {
    font-size: 1rem;
  }

  .profile-image {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .stats-card,
  .cta-card {
    padding: 1rem;
  }

  .banner-content {
    padding: 0 1rem;
  }

  .banner-icon {
    width: 40px;
    height: 40px;
  }

  .banner-message {
    font-size: 0.9rem;
  }
}

/* Enhanced Company Section Styles */
.split {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #af66ea 0%, #8b24bb 100%);
}

.area-1 {
  flex: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.area-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.area-2 {
  flex: 1.2;
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-container h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  font-weight: 400;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 60px 0;
  padding: 40px 0;
}

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

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #7a32a3, #582986);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #960ba8, #960ba8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skills-section {
  margin-top: 60px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.skill-category {
  background: #f8f9ff;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
}

.skill-category:hover {
  background: #f0f3ff;
  transform: translateX(10px);
}

.skill-category h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tech-icon {
  width: 40px;
  height: 40px;
  font-size: 40px;
}

.cta-section {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #960ba8, #960ba8);
  border-radius: 20px;
  color: white;
}

.cta-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .split {
    flex-direction: column;
    min-height: auto;
  }

  .area-1 {
    min-height: 200px;
  }

  .text-container h2 {
    font-size: 2.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Section Styles */
.team-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.team-role {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.team-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.skill-tag {
  background: #667eea;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Stats Section Styles */
.stats-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-item {
  padding: 30px;
  /* increased from 20px */
  min-height: 180px;
  /* ensures enough vertical space */
}

.stat-number {
  font-size: 5rem;
  /* or even 4rem */
  line-height: 1.2;
  /* ensure proper vertical spacing */
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .stat-number {
    font-size: 3rem;
  }
}

/**************************/
/*     General Styles     */
/**************************/
body,
html {
  width: 100%;
  height: 100%;
}

body,
p {
  color: #4d5055;
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
  color: #24262a;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.25rem;
  font-family: "Poppins";
}

h2 {
  color: #24262a;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  font-family: "Poppins";
}

h3 {
  color: #24262a;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-family: "Poppins";
}

h4 {
  color: #24262a;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Poppins";
}

h5 {
  color: #24262a;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-family: "Poppins";
}

h6 {
  color: #24262a;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375rem;
  font-family: "Poppins";
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p-small {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

.li-space-lg li {
  margin-bottom: 0.5rem;
}

a {
  color: #4d5055;
  text-decoration: underline;
}

a:hover {
  color: #4d5055;
  text-decoration: underline;
}

.no-line {
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}

.blue {
  color: #2259ec;
}

.purple {
  color: #960ba8;
}

.bg-gray {
  background-color: #f7f9fb;
}

.section-divider {
  display: block;
  height: 1px;
  margin: 0;
  border: none;
  background-color: #d3dae2;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #960ba8;
  background-color: #960ba8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  background-color: transparent;
  color: #960ba8;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid #960ba8;
  background-color: #960ba8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-lg:hover {
  background-color: transparent;
  color: #960ba8;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #24262a;
  background-color: transparent;
  color: #24262a;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #24262a;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.625rem 2.625rem 1.625rem 2.625rem;
  border: 1px solid #24262a;
  background-color: transparent;
  color: #24262a;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #24262a;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #24262a;
  background-color: transparent;
  color: #24262a;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #24262a;
  color: #ffffff;
  text-decoration: none;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.label-control {
  position: absolute;
  top: 0.875rem;
  left: 1.5rem;
  color: #7d838a;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.375rem;
  cursor: text;
  transition: all 0.2s ease;
}

.form-control-input:focus+.label-control,
.form-control-input.notEmpty+.label-control,
.form-control-textarea:focus+.label-control,
.form-control-textarea.notEmpty+.label-control {
  top: 0.125rem;
  color: #4d5055;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-control-input,
.form-control-select {
  display: block;
  /* needed for proper display of the label in Firefox, IE, Edge */
  width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 0.125rem;
  padding-left: 1.5rem;
  border: 1px solid #cbcbd1;
  background-color: #ffffff;
  color: #4d5055;
  font-size: 0.875rem;
  line-height: 1.875rem;
  transition: all 0.2s;
  -webkit-appearance: none;
  /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3.25rem;
  color: #7d838a;
}

select {
  /* you should keep these first rules in place to maintain cross-browser behavior */
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("../images/down-arrow.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  outline: none;
}

.form-control-textarea {
  display: block;
  /* used to eliminate a bottom gap difference between Chrome and IE/FF */
  width: 100%;
  height: 14rem;
  /* used instead of html rows to normalize height between Chrome and IE/FF */
  padding-top: 1.5rem;
  padding-left: 1.3125rem;
  border: 1px solid #cbcbd1;
  background-color: #ffffff;
  color: #4d5055;
  font-size: 0.875rem;
  line-height: 1.5rem;
  transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border: 1px solid #a1a1a1;
  outline: none;
  /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
  border: 1px solid #a1a1a1;
}

.checkbox {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

input[type="checkbox"] {
  vertical-align: -10%;
  margin-right: 0.5rem;
}

.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.25rem;
  border: 1px solid #960ba8;
  border-radius: 32px;
  background-color: #960ba8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  border: 1px solid #24262a;
  background-color: #24262a;
  color: #ffffff;
}

/*****************/
/*     About     */
/*****************/
/* About Section */
.about-section {
  padding: 7rem 0 5rem;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #960ba8, #960ba8 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.75rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

/********************/
/*     Services     */
/********************/
.basic-2 {
  padding-top: 5.75rem;
  padding-bottom: 5.25rem;
}

.basic-2 .h2-heading {
  margin-bottom: 0.75rem;
  text-align: center;
}

.basic-2 .p-heading {
  margin-bottom: 4rem;
  text-align: center;
}

.basic-2 .text-box {
  margin-bottom: 3rem;
  padding: 3.5rem 1rem 2.125rem 1rem;
  border: 1px solid #cfd7de;
}

.basic-2 .fas,
.basic-2 .far {
  margin-bottom: 1.75rem;
  color: #960ba8;
  font-size: 3.5rem;
}

.basic-2 h4 {
  letter-spacing: 1px;
}

/*******************/
/*     Details     */
/*******************/

.image-container {
  width: 100%;
  height: 200px;
  /* Fixed height */
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* This ensures the image covers the entire container while maintaining aspect ratio */
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
  /* Nice zoom effect on hover */
}

.split .area-1 {
  height: 430px;
  background: linear-gradient(to bottom right,
      rgba(25, 26, 29, 0.5),
      rgba(25, 26, 29, 0.5)),
    url("../images/details-background.jpg") center center no-repeat;
  background-size: cover;
}

.split .area-2 {
  padding-top: 7.75rem;
  padding-bottom: 7.75rem;
}

.split p {
  margin-bottom: 2.25rem;
}

.split .icons-container {
  margin-top: 3rem;
}

.split .icons-container img {
  width: 50px;
  margin-right: 0.625rem;
  margin-bottom: 0.75rem;
}

/********************/
/*     Projects     */
/********************/
.basic-3 {
  padding-top: 7.75rem;
  padding-bottom: 1rem;
}

.basic-3 .h2-heading {
  margin-bottom: 0.75rem;
  text-align: center;
}

.basic-3 .p-heading {
  margin-bottom: 4rem;
  text-align: center;
}

.basic-3 .text-container {
  margin-bottom: 4rem;
}

.basic-3 .image-container {
  margin-bottom: 1rem;
}

/* Hover Animation */
.basic-3 .image-container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}

.basic-3 .image-container img {
  margin: 0;
  transition: all 0.2s;
}

.basic-3 .image-container:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* end of hover animation */

/*****************/
/*     Works     */
/*****************/
.basic-4 {
  padding-bottom: 1rem;
}

.basic-4 .text-container {
  margin-bottom: 4rem;
}

.basic-4 .image-container {
  margin-bottom: 1rem;
}

/* Hover Animation */
.basic-4 .image-container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}

.basic-4 .image-container img {
  margin: 0;
  transition: all 0.2s;
}

.basic-4 .image-container:hover img {
  -moz-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

/* end of hover animation */

/************************/
/*     Testimonials     */
/************************/
.cards-1 {
  padding-top: 3rem;
  padding-bottom: 3.875rem;
}

.cards-1 .h2-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.cards-1 .card {
  margin-bottom: 4rem;
  border: none;
}

.cards-1 .card-body {
  padding: 0;
  text-align: center;
}

.cards-1 .testimonial-text {
  margin-bottom: 1.625rem;
}

.cards-1 img {
  display: inline-block;
  width: 60px;
  margin-bottom: 0.875rem;
  border-radius: 50%;
}

.cards-1 .text {
  margin-top: 0.375rem;
}

.cards-1 .testimonial-author {
  color: #24262a;
}

.cards-1 .testimonial-author,
.cards-1 .occupation {
  font-size: 0.875rem;
  line-height: 1.375rem;
}

/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
  padding-top: 7.75rem;
  padding-bottom: 6.75rem;
}

.accordion-1 .h2-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.accordion-1 .card {
  margin-bottom: 1.75rem;
  border: none;
}

.accordion-1 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}

.accordion-1 .card button {
  padding: 0;
  color: #24262a;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: "Poppins";
}

.accordion-1 .card button:hover {
  text-decoration: none;
}

.accordion-1 .card button:before {
  float: left;
  margin-right: 0.625rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  transition: all 0.2s;
}

.accordion-1 .card button.collapsed:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-1 .card-body {
  padding: 0.75rem 1.5rem 0.5rem 1.5rem;
}

/*******************/
/*     Contact     */
/*******************/
.form-1 {
  padding-top: 7.75rem;
  padding-bottom: 7rem;
  text-align: center;
}

.form-1 .h2-heading {
  margin-bottom: 0.75rem;
  text-align: center;
}

.form-1 .p-heading {
  margin-bottom: 4rem;
}

/******************/
/*     Footer     */
/******************/
.footer {
  padding-top: 2.00rem;
  padding-bottom: 0.5rem;
  background-color: #24262a;
  text-align: center;
}

.footer a {
  text-decoration: none;
}

.footer .fa-stack {
  width: 2em;
  margin-bottom: 1.25rem;
  margin-right: 0.375rem;
  font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
  color: #960ba8;
  transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
  color: #960ba8;
}

.footer .fa-stack:hover .fa-stack-2x {
  color: #ffffff;
}

/*********************/
/*     Copyright     */
/*********************/
.copyright {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #24262a;
  text-align: center;
}

.copyright .p-small {
  color: #9da6ac;
  text-align: center;
}

.copyright a {
  color: #9da6ac;
}

/******************************/
/*     Back To Top Button     */
/******************************/
/* a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 30px;
  background: #3a424d url("../images/up-arrow.png") no-repeat center 47%;
  background-size: 18px 18px;
  text-indent: -9999px;
}

a:hover.back-to-top {
  background-color: #960ba8;
} */

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  background-color: #24262a;
}

.ex-header h1 {
  color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  background-color: #f7f9fb;
}

.ex-cards-1 .card {
  border: none;
  background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
  width: 2em;
  font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  color: #960ba8;
}

.ex-cards-1 .card .fa-stack-1x {
  color: #ffffff;
  font-weight: 700;
  line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .media-body {
  margin-left: 0.75rem;
}

.ex-cards-1 .card .list-unstyled .media-body h5 {
  margin-top: 0.125rem;
  margin-bottom: 0.375rem;
}

/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

  /* Header */
  .header {
    padding-top: 11rem;
    padding-bottom: rem;
  }

  /* end of header */

  /* Services */
  .basic-2 .text-box {
    padding-right: 2.125rem;
    padding-left: 2.125rem;
  }

  /* end of services */

  /* Extra Pages */
  .ex-basic-1 .text-box {
    padding: 1.75rem 2rem 0.875rem 2rem;
  }

  /* end of extra pages */
}

/* end of min-width 768px */

/* Min-width 992px */
@media (min-width: 992px) {

  /* General Styles */
  .h2-heading {
    width: 35.25rem;
    margin-right: auto;
    margin-left: auto;
  }

  .p-heading {
    width: 46rem;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of general styles */

  /* Navigation */
  .navbar {
    display: block;
    padding-top: 1.75rem;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.2s;
  }

  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-top: 0.5rem;
    background-color: #24262a;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    -webkit-transform: none;
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }

  .navbar .dropdown-menu {
    margin-top: 0.25rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
  }

  .navbar .dropdown-divider {
    width: 90%;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-right: 0;
    margin-left: 0.25rem;
  }

  /* end of navigation */

  /* Header */
  .header {
    padding-top: 15rem;
    padding-bottom: 14rem;
    text-align: left;
  }

  /* end of header */

  /* Details */
  .split {
    height: 760px;
  }

  .split .area-1 {
    height: 100%;
    width: 50%;
    display: inline-block;
  }

  .split .area-2 {
    height: 100%;
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }

  .split .text-container {
    width: 400px;
    margin-left: 3rem;
  }

  /* end of details */

  /* Testimonials */
  .cards-1 .card {
    display: inline-block;
    width: 290px;
    vertical-align: top;
  }

  .cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }

  .cards-1 .card-body {
    text-align: left;
  }

  .cards-1 .details {
    display: flex;
    align-items: flex-start;
  }

  .cards-1 .details .text {
    flex-direction: column;
  }

  .cards-1 .details img {
    margin-right: 1.125rem;
  }

  /* end of testimonials */

  /* Accordion */
  .accordion-1 .accordion {
    width: 730px;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of accordion */

  /* Contact */
  .form-1 form {
    width: 790px;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of contact */

  /* Extra Pages */
  .ex-cards-1 .card {
    display: inline-block;
    width: 296px;
    vertical-align: top;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  /* end of extra pages */
}

/* end of min-width 992px */

/* Min-width 1200px */
@media (min-width: 1200px) {

  /* General Styles */
  .h1-large {
    font-size: 3.75rem;
    line-height: 4.625rem;
  }

  /* end of general styles */

  /* Navigation */
  .navbar .container {
    max-width: 1330px;
  }

  /* end of navigation */

  /* Header */
  .header {
    padding-top: 14rem;
    padding-bottom: 17.25rem;
  }

  /* end of header */

  /* About */
  /* .basic-1 .text-container.first {
    margin-right: 2rem;
  }

  .basic-1 .text-container.second {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .basic-1 .text-container.third {
    margin-left: 2rem;
  } */

  /* end of about */

  /* Details */
  .split {
    height: 700px;
  }

  .split .text-container {
    width: 460px;
    margin-left: 5rem;
  }

  /* end of details */

  /* Testimonials */
  .cards-1 .card {
    width: 338px;
  }

  .cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 2.625rem;
    margin-left: 2.625rem;
  }

  /* end of testimonials */

  /* Extra Pages */
  .ex-cards-1 .card {
    width: 336px;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 2.875rem;
    margin-left: 2.875rem;
  }

  /* end of extra pages */
}

/* end of min-width 1200px */