/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome CDN Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Color Palette */
:root {
  /* Primary Colors */
  --primary-dark: #161a21;
  --primary-blue: #419ad1;
  --primary-teal: #38878d;
  --primary-purple: #9155d4;
  --primary-orange: #eb9631;
  
  /* Light Shades */
  --light-blue: #dbeff9;
  --light-teal: #d4fff1;
  --light-purple: #faf5ff;
  --light-orange: #fff2d7;
  --light-gray: #f7fafc;
  
  /* Dark Shades */
  --dark-blue: #123591;
  --dark-teal: #06477a;
  --dark-purple: #573b8e;
  --dark-orange: #ba341f;
  --dark-gray: #404d5d;
  
  /* Gradient Combinations */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
  --gradient-secondary: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
  --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--dark-blue));
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 18px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.61rem;
  color: var(--primary-dark);
}

h2 {
  font-size: 2rem;
  color: var(--primary-dark);
}

h3 {
  font-size: 1.58rem;
  color: var(--primary-dark);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
    padding-top: 227px;
}

.hero-content h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.74rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.26rem;
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.62rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.14rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 11px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-18px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: white;
}

.service-item {
  background: white;
  border-radius: 19px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-14px);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 17px;
  margin-bottom: 1.57rem;
}

.service-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-item .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-item .features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.62rem;
}

.service-item .features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Features Section */
.features {
  background: var(--light-blue);
}

/* Price Plan Section */
.priceplan {
  background: white;
}

.price-item {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-10px);
}

.price-item .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.price-item .features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-item .features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
.team {
  background: var(--light-teal);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
  color: var(--primary-dark);
  margin-bottom: 0.66rem;
}

.team-member p {
  color: var(--primary-teal);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: white;
}

.review-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-item .stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.review-item p {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-item .author {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Case Studies Section */
.casestudy {
  background: var(--light-purple);
}

.casestudy-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process {
  background: white;
}

.process-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.process-item .step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline {
  background: var(--light-orange);
}

.timeline-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-orange);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Career Section */
.career {
  background: white;
}

.career-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

.career-item .role {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.68rem;
}

/* Core Info Section */
.coreinfo {
  background: var(--light-teal);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background: var(--gradient-primary);
  color: white;
}

.contact .section-title h2,
.contact .section-title p {
  color: white;
}

.contact-form {
  background-color: #166fe5;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(46, 141, 195, 0.25);
}

.contact-form .btn {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  color: white;
  transition: transform 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
}

.contact-info {
  color: white;
}

.contact-info i {
  color: var(--primary-teal);
  margin-right: 1rem;
}

/* Blog Section */
.blog {
  background: white;
}

.blog-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.blog-item .read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  background: var(--light-blue);
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-blue);
  color: white;
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.63rem;
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  margin: 0;
  border-top: 1px solid var(--light-gray);
}

/* Gallery Section */
.gallery {
  background: white;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
  border-radius: 15px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 2rem 0;
}

.breadcrumb-item img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Additional Pages */
.additional-section {
  padding: 4rem 0;
}

.additional-section:nth-child(even) {
  background: var(--light-gray);
}

.additional-section:nth-child(odd) {
  background: white;
}

.additional-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.additional-item h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
