/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0c0f;
  color: #e4e7eb;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1e24;
}
::-webkit-scrollbar-thumb {
  background: #3a4452;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2dc4b6;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #8ee3e3 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: #f0f4f8;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #2dc4b6;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #9aa7b7;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary {
  background: #2dc4b6;
  color: #0a0c0f;
  border-color: #2dc4b6;
}
.btn-primary:hover {
  background: #4ed9cb;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -8px rgba(45, 196, 182, 0.4);
}

.btn-outline {
  background: transparent;
  color: #e4e7eb;
  border-color: #3f4a5a;
}
.btn-outline:hover {
  border-color: #2dc4b6;
  color: #ffffff;
  background: rgba(45, 196, 182, 0.1);
  transform: translateY(-3px);
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #252b33;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(145deg, #ffffff, #8ee3e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #b6c2d1;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1rem;
}
.nav-links a:hover {
  color: #2dc4b6;
}

/* Sections */
section {
  padding: 5rem 0;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 70% 30%, #1f2a33 0%, #0a0c0f 70%);
}

.hero-content {
  max-width: 700px;
}

.hero p {
  font-size: 1.25rem;
  color: #b6c2d1;
  margin-bottom: 2rem;
}

.highlight {
  color: #2dc4b6;
  font-weight: 600;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #151a20;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #252b33;
}

.about-card p {
  color: #9aa7b7;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  background: #0f1318;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #151a20;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #252b33;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #2dc4b6;
  box-shadow: 0 20px 40px -10px rgba(45, 196, 182, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  color: #9aa7b7;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  background: #151a20;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #252b33;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: #2dc4b6;
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(45deg, #1f2a33, #2a3540);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #2dc4b6;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.portfolio-info p {
  color: #9aa7b7;
  font-size: 0.95rem;
}

/* Why Us Section */
.whyus-section {
  background: #0f1318;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2dc4b6;
  opacity: 0.3;
  line-height: 1;
}

.feature h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #ffffff;
}

.feature p {
  color: #9aa7b7;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: #151a20;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #252b33;
}

.contact-title {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #1f2a33;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #e4e7eb;
}

.contact-item:hover {
  background: #2a3540;
  transform: translateX(5px);
  border-color: #2dc4b6;
}

.contact-icon {
  font-size: 1.8rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: #9aa7b7;
  margin-bottom: 0.2rem;
}

.contact-details p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

.consultation-card {
  background: #151a20;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #252b33;
}

.consultation-text {
  color: #9aa7b7;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #151a20;
  border-top: 1px solid #252b33;
  padding: 2rem 0;
  text-align: center;
  color: #9aa7b7;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-container {
    justify-content: center;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .service-card, .portfolio-item, .feature {
    padding: 1.5rem;
  }

}

.contact-item{
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.contact-item:hover{
  opacity: 0.8;
}


.logo-img {
  height: 50px;
  width: 100px;
  cursor: pointer;
  transition: 0.3s;
}

.logo-img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
