* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #dc2626;
  --dark-red: #991b1b;
  --light-red: #ef4444;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --white: #ffffff;
  --off-white: #f5f5f5;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
}

/* Glassmorphism utility class */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
nav {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

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

.logo-container {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s;
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
  border: 2px solid var(--primary-red);
}

.logo-container:hover .logo-image {
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8));
  transform: scale(1.05);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.logo {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-style: normal;
  color: var(--primary-red);
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  transition: all 0.3s;
}

.logo-tagline {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
  transition: all 0.3s;
  position: absolute;
  bottom: -18px;
  right: -10px;
  white-space: nowrap;
}

.logo-container:hover .logo {
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}

.logo-container:hover .logo-tagline {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li {
  cursor: pointer;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 20px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-logo-container {
  position: relative;
  margin-bottom: 2rem;
  animation: fadeInDown 1s;
}

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.7));
  animation: float 3s ease-in-out infinite;
  border: 4px solid var(--primary-red);
  box-shadow: 0 0 60px rgba(220, 38, 38, 0.5), inset 0 0 20px rgba(220, 38, 38, 0.3);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Kalam", cursive;
  font-weight: 700;
  font-style: normal;
  color: var(--primary-red);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s;
  position: relative;
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s 0.2s backwards;
  position: relative;
  color: var(--off-white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

/* About Section */
#about {
  background: var(--dark-gray);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--off-white);
}

.who-we-are-box {
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: left;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 600;
}

.social-links a:hover {
  background: var(--primary-red);
  box-shadow: 0 5px 30px rgba(220, 38, 38, 0.5);
  transform: scale(1.05);
}

/* What We Do Section */
#what-we-do {
  background: var(--black);
}

.what-we-do-content {
  max-width: 1000px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--off-white);
  line-height: 1.7;
}

/* Vision Section */
#vision {
  background: var(--dark-gray);
}

.vision-statement {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
  border: 2px solid var(--primary-red);
  border-radius: 15px;
  text-align: center;
}

.vision-statement p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
}

.vision-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vision-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  color: var(--white);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(220, 38, 38, 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.vision-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.vision-card:hover::before {
  opacity: 1;
}

.vision-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: none;
  transition: all 0.3s;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1);
}

.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
  position: relative;
}

.vision-card p {
  color: var(--off-white);
  position: relative;
  line-height: 1.7;
}

/* Social Responsibility Section */
#social-responsibility {
  background: var(--black);
}

.social-responsibility-content {
  max-width: 1000px;
  margin: 0 auto;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.responsibility-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.responsibility-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.responsibility-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.responsibility-card:hover .responsibility-icon {
  transform: scale(1.1);
}

.responsibility-card h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.responsibility-card p {
  color: var(--off-white);
  line-height: 1.7;
}

.responsibility-quote {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
  border-left: 4px solid var(--primary-red);
  border-radius: 10px;
  text-align: center;
}

.responsibility-quote p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white);
  font-style: italic;
  margin: 0;
}

/* Development Section */
#development {
  background: var(--dark-gray);
}

.development-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.development-content p {
  color: var(--off-white);
}

.development-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pillar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  transition: all 0.3s;
}

.pillar:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.pillar h4 {
  color: var(--primary-red);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.pillar p {
  color: var(--off-white);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Blog Section */
#blog {
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-red);
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-card h3 {
  margin: 1rem 0;
  color: var(--white);
}

.blog-card p {
  color: var(--off-white);
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--light-red);
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination button {
  padding: 0.8rem 1.5rem;
  background: rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid var(--primary-red);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  font-family: "Poppins", sans-serif;
}

.pagination button:hover:not(:disabled) {
  background: var(--primary-red);
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
  transform: scale(1.05);
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination span {
  color: var(--white);
  font-weight: 600;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
}

.modal-content {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s;
  margin: auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--dark-red), var(--black));
  color: var(--white);
  padding: 2rem;
  border-radius: 15px 15px 0 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.modal-header h2 {
  padding-right: 40px;
  word-wrap: break-word;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid var(--primary-red);
  color: var(--white);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.close-modal:hover {
  background: var(--primary-red);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.modal-body {
  padding: 2rem;
}

.modal-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.modal-date {
  color: var(--primary-red);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-body h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.modal-body p {
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Team Section - Horizontal Scroll */
#team {
  background: var(--dark-gray);
}

.team-grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-red) var(--dark-gray);
}

.team-grid::-webkit-scrollbar {
  height: 8px;
}

.team-grid::-webkit-scrollbar-track {
  background: var(--dark-gray);
  border-radius: 10px;
}

.team-grid::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 10px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
  background: var(--light-red);
}

.team-member {
  min-width: 280px;
  flex-shrink: 0;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
  overflow: hidden;
  border: 3px solid var(--primary-red);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-red);
  font-weight: 600;
}

/* Why Us Section */
#why-us {
  background: var(--black);
}

.why-us-content {
  max-width: 900px;
  margin: 0 auto;
}

.tagline-box {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.05));
  border: 3px solid var(--primary-red);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 50px rgba(220, 38, 38, 0.3);
}

.tagline-box h3 {
  font-family: "Kalam", cursive;
  font-size: 2rem;
  color: var(--primary-red);
  margin: 0;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

/* Contact Section */
#contact {
  background: var(--dark-gray);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.3s;
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.submit-btn:hover {
  background: var(--light-red);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
  transform: scale(1.02);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--black), var(--dark-red));
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(220, 38, 38, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .logo-container {
    gap: 0.7rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
    bottom: -16px;
    right: -8px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    display: none;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0;
    width: 100%;
  }

  .nav-links a {
    padding: 1rem 2rem;
    width: 100%;
  }

  .hero {
    padding: 80px 20px 100px;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .who-we-are-box {
    padding: 2rem 1.5rem;
  }

  .services-grid,
  .responsibility-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vision-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vision-card,
  .service-card,
  .responsibility-card {
    padding: 1.5rem;
  }

  .vision-icon,
  .service-icon,
  .responsibility-icon {
    font-size: 2.5rem;
  }

  .development-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal.active {
    padding: 1rem;
    align-items: flex-start;
  }

  .modal-content {
    margin-top: 1rem;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-image {
    height: 200px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-links a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .team-grid {
    gap: 1.5rem;
  }

  .team-member {
    min-width: 250px;
  }

  .pagination {
    gap: 0.5rem;
  }

  .pagination button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .pagination span {
    font-size: 0.9rem;
  }

  .tagline-box {
    padding: 2rem 1.5rem;
  }

  .tagline-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-container {
    gap: 0.5rem;
  }

  .logo-image {
    width: 35px;
    height: 35px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
    bottom: -15px;
    right: -6px;
  }

  .hero {
    padding: 60px 20px 80px;
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .who-we-are-box {
    padding: 1.5rem;
  }

  .vision-icon,
  .service-icon,
  .responsibility-icon {
    font-size: 2rem;
  }

  .team-photo {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }

  .team-member {
    min-width: 220px;
  }

  .tagline-box {
    padding: 1.5rem 1rem;
  }

  .tagline-box h3 {
    font-size: 1.2rem;
  }
}