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

body {
  font-family: 'Inter', sans-serif;
  color: #334155;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  color: #1e293b !important;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.1;
  padding: 0.3rem 0.8rem;
  border: 3px solid #1e293b;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  background: #fff;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-main {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
  color: #1e40af;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b91c1c;
  letter-spacing: 3px;
}

.nav-link {
  color: #334155 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #b91c1c !important;
}

.btn-contact {
  background: #b91c1c;
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
}

.btn-contact:hover {
  background: #b91c1c;
}

/* Hero Section */
.hero-section {
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100vh;
  gap: 15px;
  background: #fff;
  padding: 15px;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .hero-item {
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .hero-item {
    height: 100vh;
  }
}

.hero-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
  animation: floatGlow 4s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
  }
  25% {
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.5);
  }
  50% {
    box-shadow: 0 0 60px rgba(185, 28, 28, 0.4);
  }
  75% {
    box-shadow: 0 -10px 40px rgba(30, 64, 175, 0.5);
  }
}

.hero-item:nth-child(1) {
  animation-delay: 0s;
}

.hero-item:nth-child(2) {
  animation-delay: 1s;
}

.hero-item:nth-child(3) {
  animation-delay: 2s;
}

.hero-item:nth-child(4) {
  animation-delay: 3s;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Sections */
.section-light {
  padding: 5rem 0;
  background: #fff;
}

.section-dark {
  padding: 5rem 0;
  background: #f8fafc;
  color: #334155;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1e40af;
  border-radius: 2px;
}

.section-text {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.8;
}

/* Service Cards */
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-top: 3px solid #1e40af;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(30,64,175,0.2);
}

.service-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #64748b;
}

/* Project Cards */
.project-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.project-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.blog-card h4 {
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: #64748b;
}

/* Contact Section */
.section-contact {
  padding: 5rem 0;
  background: #1e3a8a;
  color: #fff;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
}

.form-input::placeholder {
  color: #cbd5e1;
}

.btn-submit {
  background: #b91c1c;
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #991b1b;
}

/* Footer */
.footer-section {
  background: #0f172a;
  color: #94a3b8;
  padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* Page Sections */
.page-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #64748b;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* About Page */
.about-intro {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 15px;
}

.about-intro h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1rem;
}

.vision-mission {
  margin-top: 3rem;
}

.vm-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.vm-card h3 {
  color: #b91c1c;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.vm-card p {
  color: #64748b;
  line-height: 1.8;
}

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #1e40af;
}

.service-item h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-item ul {
  list-style: none;
  padding: 0;
}

.service-item ul li {
  color: #334155;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-item ul li:before {
  content: "▸";
  color: #b91c1c;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Vision Mission Enhancement */
.section-dark .vm-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s;
  border-left: 5px solid #1e40af;
}

.section-dark .vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.section-dark .vm-card h3 {
  color: #b91c1c;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-dark .vm-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.about-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 2px solid #e2e8f0;
}

.about-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30,64,175,0.15);
  border-color: #1e40af;
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-box h3 {
  color: #1e40af;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-box p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Blue Section Title */
.section-title-blue {
  color: #1e40af;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-title-blue:after {
  background: #1e40af;
}

/* Footer Styling */
.footer-heading {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #b91c1c;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  color: #cbd5e1;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.footer-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-icon {
  font-size: 1.8rem;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.2);
}

.tagline {
  color: #cbd5e1;
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 1.5rem;
}

.social-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1rem 0;
}

.social-links-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.subscribe-form {
  margin-bottom: 1rem;
}

.subscribe-input {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

.subscribe-btn {
  background: #b91c1c;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}

.subscribe-btn:hover {
  background: #991b1b;
}

.admin-link {
  color: #cbd5e1;
  text-decoration: underline;
  display: block;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.admin-link:hover {
  color: #fff;
}

.follow-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.tagline-small {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
}

/* Admin Pages */
.admin-section {
  min-height: 100vh;
  padding: 120px 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
}

.admin-login-box {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.admin-title {
  color: #1e40af;
  text-align: center;
  margin-bottom: 2rem;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-input {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.admin-input:focus {
  outline: none;
  border-color: #1e40af;
}

.admin-btn {
  background: #1e40af;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.admin-btn:hover {
  background: #1e3a8a;
}

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

.dashboard-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid #1e40af;
}

.dashboard-card h3 {
  color: #334155;
  margin-bottom: 1rem;
}

.dashboard-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1e40af;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-view-site {
  background: #b91c1c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-view-site:hover {
  background: #991b1b;
  color: #fff;
}

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

.admin-section-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #1e40af;
}

.admin-section-card h3 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.admin-menu {
  list-style: none;
  padding: 0;
}

.admin-menu li {
  margin-bottom: 0.8rem;
}

.admin-menu a {
  color: #334155;
  text-decoration: none;
  padding: 0.5rem;
  display: block;
  border-radius: 5px;
  transition: all 0.3s;
}

.admin-menu a:hover {
  background: #f1f5f9;
  color: #1e40af;
  padding-left: 1rem;
}

.alert-error {
  background: #fee2e2;
  color: #b91c1c;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  color: #fff;
  padding: 2rem;
  padding-top: 150px;
  background: rgba(0, 0, 0, 0.15);
}

.hero-main-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  max-width: 900px;
  text-align: center;
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #fff;
  max-width: 900px;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-hero-primary {
  background: #b91c1c;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-hero-primary:hover {
  background: #991b1b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.4);
  color: #fff;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  border: 3px solid #fff;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: #fff;
  color: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .service-card-page {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .service-image {
    height: 250px;
    width: 100%;
  }
  .service-content {
    padding: 1.5rem;
    width: 100%;
  }
  .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .service-content p {
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-bottom: 1rem;
  }
  .read-more-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* About Page Layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-list h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.services-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.services-list li {
  color: #334155;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.services-list li:before {
  content: "▸";
  color: #b91c1c;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.vision-mission-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vm-box {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #1e40af;
}

.vm-box h3 {
  color: #b91c1c;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.vm-box p {
  color: #64748b;
  line-height: 1.7;
}

.about-right {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.team-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.team-image:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-right {
    position: relative;
    top: 0;
  }
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.services-col h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.services-col ul {
  list-style: none;
  padding: 0;
}

.services-col li {
  color: #334155;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.services-col li:before {
  content: "▸";
  color: #b91c1c;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.vision-mission-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-right .team-image {
  height: 350px;
}

/* About Page Color Scheme */
.about-intro h2 {
  color: #1e40af;
}

.about-intro {
  background: #fff;
}

.services-columns {
  background: #fff;
}

.vm-box {
  background: #eff6ff;
  border-left-color: #1e40af;
}

.vm-box h3 {
  color: #1e40af;
}

.team-item {
  border: 3px solid #1e40af;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-intro p {
  text-align: justify;
}

/* Contact Page */
.contact-page-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.contact-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left h2,
.contact-right h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-input {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-input:focus {
  outline: none;
  border-color: #1e40af;
}

.contact-submit-btn {
  background: #b91c1c;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-submit-btn:hover {
  background: #991b1b;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
}

.contact-item h4 {
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #64748b;
  margin: 0.2rem 0;
}

.follow-section h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.social-links-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon-contact {
  font-size: 2rem;
  transition: transform 0.3s;
}

.social-icon-contact:hover {
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* About Page Contact Card */
.about-contact-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
  border: 2px solid #1e40af;
  position: sticky;
  top: 120px;
}

.about-contact-card h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.about-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.about-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2);
}

.about-contact-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.about-contact-item h4 {
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-contact-item p {
  color: #64748b;
  margin: 0.3rem 0;
  font-size: 1rem;
}

.about-follow-section {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid #1e40af;
}

.about-follow-section h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.about-social-icon {
  font-size: 2.5rem;
  transition: all 0.3s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.about-social-icon:hover {
  transform: scale(1.3) rotate(10deg);
  filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.3));
}

/* Advanced Services Styling */
.services-columns {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-top: 0.5rem;
}

.services-col h3 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.services-col ul {
  list-style: none;
  padding: 0;
}

.services-col li {
  color: #334155;
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  transition: all 0.3s;
  border-radius: 8px;
}

.services-col li:hover {
  background: rgba(30, 64, 175, 0.05);
  padding-left: 2.5rem;
  color: #1e40af;
}

.services-col li:before {
  content: "▸";
  color: #b91c1c;
  position: absolute;
  left: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.services-col li:hover:before {
  left: 0.8rem;
  transform: scale(1.2);
}

.about-intro {
  margin-bottom: 0;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.vision-mission-about {
  margin-top: 1.5rem;
}

.about-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #1e40af;
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
}

.about-social-icon:hover {
  background: #b91c1c;
  color: #fff;
}

.social-icon-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1e40af;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon-footer:hover {
  background: #b91c1c;
  color: #fff;
  transform: scale(1.2);
}

/* Services Page */
.services-page-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.services-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card-page {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.service-card-page:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  background: #b91c1c;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #991b1b;
  color: #fff;
}

/* Home Services Grid */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.home-service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}

.home-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.home-service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.home-service-content {
  padding: 1.5rem;
}

.home-service-content h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.home-service-content p {
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Projects Page */
.projects-page-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.projects-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 1rem;
}

.projects-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.project-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  background: #1e40af;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.project-item:hover {
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.project-content p {
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-tag {
  display: inline-block;
  background: #fff;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .project-item {
    grid-template-columns: 1fr;
  }
  .project-image {
    height: 300px;
  }
  .blog-card-item {
    grid-template-columns: 1fr;
  }
  .blog-image {
    height: 300px;
  }
}

/* Blog Page */
.blog-page-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.blog-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 1rem;
}

.blog-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card-item {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  background: #1e40af;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  border-top: 4px solid #b91c1c;
}

.blog-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  display: inline-block;
  background: #fff;
  color: #1e40af;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.blog-date {
  display: block;
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 800;
}

.blog-content p {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-name {
  color: #fff;
  font-weight: 600;
}

.author-name small {
  display: block;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 400;
}

.blog-read-more {
  background: #b91c1c;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s;
}

.blog-read-more:hover {
  background: #991b1b;
  color: #fff;
}

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

.pagination-btn {
  background: #1e40af;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.pagination-btn:hover:not(:disabled) {
  background: #1e3a8a;
  color: #fff;
}

.pagination-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.pagination-info {
  color: #334155;
  font-weight: 600;
  font-size: 1.1rem;
}

/* WhatsApp Icon Green Styling */
.whatsapp-icon {
  background: #25D366 !important;
  color: #fff !important;
}

.whatsapp-icon:hover {
  background: #128C7E !important;
  color: #fff !important;
}

.about-social-icon.whatsapp-icon {
  background: #25D366 !important;
  color: #fff !important;
}

.about-social-icon.whatsapp-icon:hover {
  background: #128C7E !important;
  color: #fff !important;
}

.social-icon-contact.whatsapp-icon {
  background: #25D366 !important;
  color: #fff !important;
}

.social-icon-contact.whatsapp-icon:hover {
  background: #128C7E !important;
  color: #fff !important;
}

/* Service Detail Pages */
.service-detail-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.service-detail-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e40af;
  text-align: center;
  margin-bottom: 2rem;
}

.service-detail-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 auto 3rem;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail-content h2 {
  color: #1e40af;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.service-detail-content h3 {
  color: #b91c1c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.service-detail-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-detail-content ul li {
  color: #334155;
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.service-detail-content ul li:before {
  content: "▸";
  color: #b91c1c;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
}

.btn-primary-large {
  background: #b91c1c;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.btn-primary-large:hover {
  background: #991b1b;
  color: #fff;
}

.btn-secondary-large {
  background: #1e40af;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.btn-secondary-large:hover {
  background: #1e3a8a;
  color: #fff;
}

/* Blog Admin Forms */
.blog-form {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  color: #1e40af;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: #1e40af;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.admin-table {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.admin-table thead {
  background: #1e40af;
  color: #fff;
}

.admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table tr:hover {
  background: #f8fafc;
}

.btn-edit {
  background: #1e40af;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.btn-edit:hover {
  background: #1e3a8a;
  color: #fff;
}

.btn-delete {
  background: #b91c1c;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-delete:hover {
  background: #991b1b;
  color: #fff;
}

/* Blog Detail Page */
.blog-detail-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #fff;
}

.blog-detail-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-detail-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1rem 0;
  line-height: 1.3;
}

.blog-detail-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #64748b;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.blog-detail-image {
  width: 100%;
  max-width: 900px;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 auto 3rem;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-detail-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #334155;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-footer {
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.btn-back-to-blog {
  background: #1e40af;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.btn-back-to-blog:hover {
  background: #1e3a8a;
  color: #fff;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Admin Header Navigation */
.admin-header-nav {
  background: #1e40af;
  padding: 1rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.admin-nav-brand {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-nav-brand:hover {
  color: #dbeafe;
}

.admin-nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.admin-nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.admin-nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.admin-nav-link.active {
  background: #b91c1c;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.4), 0 0 60px rgba(37, 211, 102, 0.2);
  z-index: 1000;
  transition: all 0.3s;
  animation: glow 1.5s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.6), 0 0 90px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.4), 0 0 60px rgba(37, 211, 102, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.9), 0 0 60px rgba(37, 211, 102, 0.7), 0 0 90px rgba(37, 211, 102, 0.5);
  }
}


/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
  .services-grid-page {
    display: flex;
    flex-direction: column;
  }
  .service-card-page {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }
  .service-image {
    width: 100% !important;
    height: 250px !important;
  }
  .service-content {
    width: 100% !important;
    padding: 1.5rem !important;
  }
  .service-content h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  .service-content p {
    font-size: 0.95rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    margin-bottom: 1rem !important;
  }
  .read-more-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
}

/* Mobile Responsive - Blog, Equipment, Property Pages */
@media (max-width: 768px) {
  .blog-card-item {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }
  .blog-image {
    width: 100% !important;
    height: 250px !important;
  }
  .blog-content {
    width: 100% !important;
    padding: 1.5rem !important;
  }
  .blog-content h3 {
    font-size: 1.2rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .blog-content p {
    font-size: 0.95rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
  .blog-read-more {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
  .project-item {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }
  .project-image {
    width: 100% !important;
    height: 250px !important;
  }
  .project-content {
    width: 100% !important;
    padding: 1.5rem !important;
  }
  .project-content h3 {
    font-size: 1.2rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .project-content p {
    font-size: 0.95rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
}
