/* Server Management Page Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0c2340 0%, #1a3a6a 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/server-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 span {
  color: #4caf50;
  position: relative;
  display: inline-block;
}

.hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4caf50;
  animation: widthGrow 1.2s ease-out forwards;
}

@keyframes widthGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1.2s ease-out 0.6s forwards;
  opacity: 0;
}

.btn-primary {
  background-color: #4caf50;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
  background-color: #3d8b40;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #0c2340;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-image {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.server-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.icon-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-container:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-container i {
  font-size: 50px;
  color: #4caf50;
  transition: all 0.4s ease;
}

.icon-container:hover i {
  transform: scale(1.2);
  color: #fff;
}

/* Navigation Menu Fix */
header {
  background-color: #0c2340;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4caf50;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Introduction Section */
.intro-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(76, 175, 80, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.intro-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(12, 35, 64, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0c2340;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #4caf50;
  border-radius: 2px;
}

.section-header h2 span {
  color: #4caf50;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(12, 35, 64, 0.05) 100%);
  z-index: -1;
  transition: all 0.4s ease;
}

.stat-box:hover::before {
  height: 100%;
}

.stat-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
  background-color: rgba(76, 175, 80, 0.2);
  transform: rotateY(180deg);
}

.stat-icon i {
  font-size: 35px;
  color: #4caf50;
  transition: all 0.4s ease;
}

.stat-box:hover .stat-icon i {
  transform: rotateY(180deg);
}

.stat-box h3 {
  font-size: 2.5rem;
  color: #0c2340;
  margin-bottom: 15px;
  font-weight: 700;
}

.stat-box p {
  color: #555;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Server Components Section */
.server-components {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.components-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.component-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.component-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #4caf50;
  transition: all 0.4s ease;
}

.component-card:hover::before {
  width: 10px;
}

.component-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.component-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.component-card:hover .component-icon {
  background-color: rgba(76, 175, 80, 0.2);
}

.component-icon.animate {
  transform: rotateY(360deg);
}

.component-icon i {
  font-size: 30px;
  color: #4caf50;
  transition: all 0.4s ease;
}

.component-card:hover .component-icon i {
  transform: scale(1.2);
}

.component-card h3 {
  font-size: 1.4rem;
  color: #0c2340;
  margin-bottom: 20px;
  font-weight: 600;
}

.component-card ul {
  padding-left: 20px;
}

.component-card ul li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  position: relative;
}

.component-card ul li::before {
  content: "•";
  color: #4caf50;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Implementation Roadmap Section - Fixed */
.implementation-roadmap {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.roadmap-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.roadmap-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #4caf50, #0c2340);
  border-radius: 3px;
  z-index: 1;
}

.roadmap-step {
  display: flex;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4caf50 0%, #3d8b40 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 40px;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
  position: absolute;
  left: -35px;
  top: 0;
  z-index: 3;
  transition: all 0.4s ease;
}

.roadmap-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.step-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-left: 35px;
  transition: all 0.4s ease;
  border-left: 5px solid #4caf50;
}

.roadmap-step:hover .step-content {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  font-size: 1.7rem;
  margin-bottom: 25px;
  color: #0c2340;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.step-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, transparent);
  border-radius: 2px;
}

.step-content ul {
  padding-left: 20px;
}

.step-content ul li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  position: relative;
}

.step-content ul li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

/* Server Roadmap Section */
.server-roadmap {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.roadmap-table {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.roadmap-header {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  background: linear-gradient(135deg, #0c2340 0%, #1a3a6a 100%);
  color: #fff;
}

.roadmap-cell {
  padding: 20px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.roadmap-row:hover {
  background-color: #f0f0f0;
  transform: translateX(10px);
}

.roadmap-row:nth-child(even) {
  background-color: #fff;
}

.phase {
  font-weight: 700;
  color: #4caf50;
  font-size: 1.1rem;
}

/* Server Brands Section */
.server-brands {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.brands-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.brand-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-logo img {
  max-height: 60px;
  max-width: 100%;
}

.brand-card h3 {
  font-size: 1.3rem;
  color: #0c2340;
  margin-bottom: 15px;
}

.brand-card p {
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Server Architecture Section - Enhanced Diagrams */
.server-architecture {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.architecture-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 15px 30px;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  margin: 0 10px 10px;
  cursor: pointer;
  font-weight: 600;
  color: #0c2340;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, #4caf50 0%, #3d8b40 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.tab-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.tab-pane h3 {
  font-size: 1.8rem;
  color: #0c2340;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.architecture-diagram {
  margin-bottom: 40px;
}

.diagram-container {
  width: 100%;
  height: 450px;
  background-color: #f9f9f9;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.diagram-container canvas {
  max-width: 100%;
  height: auto;
}

.diagram-description {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

.feature-list {
  margin-top: 25px;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  position: relative;
  font-size: 1.1rem;
}

.feature-list li::before {
  content: "✔";
  color: #4caf50;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

/* Advanced Functionalities Section */
.advanced-functionalities {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.functionalities-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.functionality-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border-top: 5px solid transparent;
}

.functionality-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-top: 5px solid #4caf50;
}

.functionality-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.functionality-card:hover .functionality-icon {
  background-color: rgba(76, 175, 80, 0.2);
}

.functionality-icon.animate {
  transform: rotateY(360deg);
}

.functionality-icon i {
  font-size: 30px;
  color: #4caf50;
  transition: all 0.4s ease;
}

.functionality-card:hover .functionality-icon i {
  transform: scale(1.2);
}

.functionality-card h3 {
  font-size: 1.3rem;
  color: #0c2340;
  margin-bottom: 20px;
  font-weight: 600;
}

.functionality-card ul {
  padding-left: 20px;
}

.functionality-card ul li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  position: relative;
}

.functionality-card ul li::before {
  content: "•";
  color: #4caf50;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.use-cases-table {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.use-cases-header {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  background: linear-gradient(135deg, #0c2340 0%, #1a3a6a 100%);
  color: #fff;
}

.use-cases-cell {
  padding: 20px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.use-cases-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.use-cases-row:hover {
  background-color: #f0f0f0;
  transform: translateX(10px);
}

.use-cases-row:nth-child(even) {
  background-color: #fff;
}

.industry {
  font-weight: 700;
  color: #4caf50;
  font-size: 1.1rem;
}

/* Windows Policy Section */
.windows-policy {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.policy-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.policy-tab-btn {
  padding: 15px 30px;
  background-color: #f9f9f9;
  border: none;
  border-radius: 50px;
  margin: 0 10px 10px;
  cursor: pointer;
  font-weight: 600;
  color: #0c2340;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-tab-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.policy-tab-btn.active {
  background: linear-gradient(135deg, #4caf50 0%, #3d8b40 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.policy-tab-content {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.policy-tab-pane {
  display: none;
}

.policy-tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.policy-tab-pane h3 {
  font-size: 1.8rem;
  color: #0c2340;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.policy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.policy-description h4,
.policy-implementation h4 {
  font-size: 1.3rem;
  color: #0c2340;
  margin-bottom: 20px;
  font-weight: 600;
}

.policy-description ul {
  padding-left: 20px;
}

.policy-description ul li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  position: relative;
}

.policy-description ul li::before {
  content: "✔";
  color: #4caf50;
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.code-block {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.code-block h5 {
  font-size: 1.1rem;
  color: #0c2340;
  margin-bottom: 20px;
  font-weight: 600;
}

.code-block ol,
.code-block ul {
  padding-left: 20px;
}

.code-block li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
}

.code-block code {
  display: block;
  background-color: #0c2340;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  font-family: monospace;
  font-size: 0.9rem;
  overflow-x: auto;
}

/* Azure Integration Section */
.azure-integration {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.integration-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.method-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.method-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.method-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 137, 214, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
}

.method-icon.animate {
  transform: rotateY(360deg);
}

.method-icon i {
  font-size: 35px;
  color: #0089d6;
  transition: all 0.4s ease;
}

.method-card:hover .method-icon i {
  transform: scale(1.2);
}

.method-card h3 {
  font-size: 1.4rem;
  color: #0c2340;
  margin-bottom: 20px;
  font-weight: 600;
}

.method-card p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.method-details {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.method-card:hover .method-details {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.method-details h4 {
  font-size: 1.1rem;
  color: #0c2340;
  margin-bottom: 8px;
  font-weight: 600;
}

.method-details p {
  margin-bottom: 0;
  font-weight: 500;
}

.integration-steps {
  max-width: 900px;
  margin: 60px auto 0;
}

.integration-steps h3 {
  font-size: 2rem;
  color: #0c2340;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.step-accordion {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-item {
  margin-bottom: 3px;
}

.step-header {
  background: linear-gradient(135deg, #0089d6 0%, #0078d4 100%);
  color: #fff;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-header:hover {
  background: linear-gradient(135deg, #0078d4 0%, #006cbe 100%);
}

.step-header h4 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.step-content {
  background-color: #f9f9f9;
  padding: 30px;
  display: none;
  border-left: 5px solid #0089d6;
}

.step-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.step-content ul,
.step-content ol {
  padding-left: 20px;
}

.step-content li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  font-size: 1.05rem;
}

.step-content code {
  display: block;
  background-color: #0c2340;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  font-family: monospace;
  font-size: 0.9rem;
  overflow-x: auto;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4caf50, #0c2340);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.benefit-card:hover::before {
  height: 10px;
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
  background-color: rgba(76, 175, 80, 0.2);
}

.benefit-icon.animate {
  transform: rotateY(360deg);
}

.benefit-icon i {
  font-size: 40px;
  color: #4caf50;
  transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
  transform: scale(1.2);
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: #0c2340;
  margin-bottom: 20px;
  font-weight: 600;
}

.benefit-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c2340 0%, #1a3a6a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/server-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content h2 span {
  color: #4caf50;
  position: relative;
  display: inline-block;
}

.cta-content h2 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4caf50;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Enhanced Diagram JavaScript */
/* Add this to your JavaScript section */


/* Responsive Styles */
@media (max-width: 1200px) {
    .components-container,
    .functionalities-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .integration-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .components-container,
    .functionalities-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0c2340;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 100;
    }
    
    nav ul.show {
        transform: translateY(0);
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .components-container,
    .functionalities-container,
    .integration-methods,
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .roadmap-header,
    .roadmap-row,
    .use-cases-header,
    .use-cases-row {
        grid-template-columns: 1fr;
    }
    
    .roadmap-cell,
    .use-cases-cell {
        padding: 15px;
    }
    
    .use-cases-header {
        display: none;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        margin: 5px 0;
        width: 80%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .roadmap-container {
        padding-left: 40px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        left: -25px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .roadmap-container::before {
        left: 20px;
    }
    
    .diagram-container {
        height: 350px;
    }
}

/* Add these styles for the enhanced Implementation & Roadmap section */

/* Policy Intro Section */
.policy-intro {
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.03) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

.policy-intro-content h3 {
    font-size: 1.8rem;
    color: #0c2340;
    margin-bottom: 20px;
    font-weight: 600;
    animation: slideInLeft 0.8s ease-out;
}

.policy-intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    animation: fadeIn 1.2s ease-out;
}

.key-areas h4 {
    font-size: 1.5rem;
    color: #0c2340;
    margin-bottom: 25px;
    font-weight: 600;
    animation: fadeIn 1.4s ease-out;
}

.key-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeIn 1.6s ease-out;
}

.key-area-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.key-area-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.key-area-item i {
    font-size: 30px;
    color: #4caf50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.key-area-item:hover i {
    transform: scale(1.2);
}

.key-area-item span {
    font-weight: 500;
    color: #0c2340;
    font-size: 0.95rem;
}

/* Enhanced Roadmap Steps */
.roadmap-step {
    margin-bottom: 70px;
}

.step-content h3 {
    font-size: 1.7rem;
    margin-bottom: 25px;
    color: #0c2340;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, transparent);
    border-radius: 2px;
}

.policy-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.policy-objective {
    background-color: rgba(12, 35, 64, 0.03);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #0c2340;
    animation: fadeIn 0.8s ease-out;
}

.policy-objective h4 {
    font-size: 1.3rem;
    color: #0c2340;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-objective p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.policy-implementation {
    background-color: rgba(76, 175, 80, 0.05);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #4caf50;
    animation: fadeIn 1s ease-out;
}

.policy-implementation h4 {
    font-size: 1.3rem;
    color: #0c2340;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.implementation-steps {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.2s ease-out;
}

.implementation-steps h4 {
    font-size: 1.3rem;
    color: #0c2340;
    margin-bottom: 20px;
    font-weight: 600;
}

.step-box {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.step-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-box h5 {
    font-size: 1.15rem;
    color: #0c2340;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-box ol {
    padding-left: 20px;
}

.step-box ol li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.path-box {
    background-color: #0c2340;
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-family: monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    white-space: nowrap;
}

.highlight {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.code-snippet {
    background-color: #0c2340;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
    overflow-x: auto;
}

.code-snippet code {
    color: #fff;
    font-family: monospace;
    font-size: 0.9rem;
    display: block;
    line-height: 1.6;
}

.code-snippet code + code {
    margin-top: 10px;
}

/* Summary Table */
.summary-table {
    margin-top: 50px;
    animation: fadeIn 1.4s ease-out;
}

.summary-table h3 {
    font-size: 1.8rem;
    color: #0c2340;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.summary-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.summary-table th {
    background: linear-gradient(135deg, #0c2340 0%, #1a3a6a 100%);
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.summary-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.summary-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.summary-table tr:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

/* Conclusion */
.conclusion {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.05) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    animation: fadeIn 1.6s ease-out;
}

.conclusion h3 {
    font-size: 1.8rem;
    color: #0c2340;
    margin-bottom: 20px;
    font-weight: 600;
}

.conclusion p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .key-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .key-areas-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .policy-objective h4,
    .policy-implementation h4,
    .implementation-steps h4 {
        font-size: 1.2rem;
    }
    
    .step-box {
        padding: 20px 15px;
    }
    
    .path-box {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .code-snippet {
        padding: 12px;
    }
    
    .code-snippet code {
        font-size: 0.8rem;
    }
    
    .summary-table th,
    .summary-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .policy-intro {
        padding: 25px;
    }
    
    .policy-objective,
    .policy-implementation,
    .implementation-steps {
        padding: 20px 15px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .conclusion h3 {
        font-size: 1.5rem;
    }
    
    .conclusion p {
        font-size: 1.1rem;
    }
}
