:root {
  /* Professional Commercial Color Scheme */
  
  /* Primary Brand Colors - Deep Professional Blues */
  --primary-navy: #0f172a;        /* Slate 900 - Deep professional navy */
  --primary-dark: #1e293b;        /* Slate 800 - Rich dark blue */
  --primary-medium: #334155;      /* Slate 700 - Medium professional blue */
  --primary-light: #f8fafc;       /* Slate 50 - Clean light background */
  --primary-lighter: #f1f5f9;     /* Slate 100 - Subtle background */
  
  /* Secondary Brand Colors - Modern Teals & Professional Greens */
  --secondary-teal: #0d9488;      /* Teal 600 - Professional teal */
  --secondary-emerald: #059669;   /* Emerald 600 - Success green */
  --secondary-cyan: #0891b2;      /* Cyan 600 - Info blue */
  
  /* Accent Colors - Professional Orange/Amber for CTAs */
  --accent-primary: #dc2626;      /* Red 600 - Important actions */
  --accent-secondary: #ea580c;    /* Orange 600 - Secondary actions */
  --accent-tertiary: #d97706;     /* Amber 600 - Highlights */
  
  /* Legacy Support - Map old variables to new ones */
  --accent-blue: var(--secondary-cyan);
  --accent-orange: var(--accent-secondary);
  --accent-green: var(--secondary-emerald);
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6b7280;
  --white: #ffffff;
  --border-light: #f3f4f6;
  --border-medium: #e5e7eb;
  
  /* Professional Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Professional Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-medium) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-teal) 0%, var(--secondary-cyan) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.blog-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.blog-page h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

.feature-post {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border: 1px solid #eee;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 10px;
}

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

.feature-post .blog-content {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-post .blog-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-post .blog-snippet {
  font-size: 15px;
  margin-bottom: 15px;
  color: #555;
}

.read-more-btn {
  font-weight: bold;
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #0056b3;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

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

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

.blog-card .blog-content {
  padding: 15px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-card .blog-snippet {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}


/* Reset */
.blog-details {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
  line-height: 1.8;
}

.blog-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-full-content {
  padding: 20px 10px;
}

.blog-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 10px;
}

.blog-author {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.blog-content {
  font-size: 1.1rem;
  color: #374151;
  text-align: justify;
}

.blog-content p {
  margin-bottom: 1.2em;
}

@media (max-width: 768px) {
  .blog-details {
    padding: 15px;
  }

  .blog-title {
    font-size: 1.8rem;
  }

  .blog-content {
    font-size: 1rem;
  }
}














.news-banner {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.news-banner h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}










.main-content-with-sidebar {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.sidebar {
  width: 300px;
}

.clock-section,
.calendar-section {
  background-color: #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.clock-section h3,
.calendar-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.digital-clock {
  font-size: 24px;
  font-weight: bold;
  color: #1e90ff;
  text-align: center;
}

.calendar-section table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.calendar-section th,
.calendar-section td {
  padding: 8px;
  border: 1px solid #ddd;
}

.calendar-section .today {
  background-color: #1e90ff;
  color: white;
  font-weight: bold;
  border-radius: 50%;
}












/* Layout container */
.blog-page {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

/* Flex layout for main content and sidebar */
.main-content-with-sidebar {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Main content area */
.main-content {
  flex: 1 1 100%;
  min-width: 0;
}

/* Sidebar */
.sidebar {
  flex: 0 0 300px;
  max-width: 100%;
}

/* Responsive behavior */
@media (min-width: 768px) {
  .main-content {
    flex: 1 1 70%;
  }

  .sidebar {
    flex: 1 1 28%;
  }
}

@media (max-width: 767px) {
  .main-content-with-sidebar {
    flex-direction: column;
  }

  .sidebar,
  .main-content {
    width: 100%;
  }
}

/* Clock and calendar box styling */
.clock-section,
.calendar-section {
  background-color: #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Clock styling */
.digital-clock {
  font-size: 24px;
  font-weight: bold;
  color: #1e90ff;
  text-align: center;
  margin-top: 10px;
}

/* Calendar table */
.calendar-section table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  margin-top: 10px;
}

.calendar-section th,
.calendar-section td {
  padding: 8px;
  border: 1px solid #ddd;
}

.calendar-section .today {
  background-color: #1e90ff;
  color: white;
  font-weight: bold;
  border-radius: 50%;
}
