/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6; color: #333; overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.header-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 50px; height: 50px; background: linear-gradient(45deg, #ffd700, #ffed4a);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: bold; color: #1e3c72; font-size: 1.2rem;
}
.logo-text { font-size: 1.8rem; font-weight: bold; }
.header-right { display: flex; align-items: center; gap: 1rem; }
.phone { font-size: 1.1rem; font-weight: 600; }
.cta-button {
  background: linear-gradient(45deg, #ff6b35, #f7931e); color: white;
  padding: 12px 24px; border: none; border-radius: 30px; font-weight: bold;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,107,53,0.4); }

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(30,60,114,0.9), rgba(42,82,152,0.9)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f8ff" width="1200" height="600"/><path fill="%23e6f3ff" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
  background-size: cover; background-position: center; color: white; padding: 80px 0;
  text-align: center; position: relative;
}
.hero h1 { font-size: 3.5rem; font-weight: bold; margin-bottom: 1rem; animation: fadeInUp 1s ease; }
.hero .slogan { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.95; animation: fadeInUp 1s ease 0.2s both; }
.hero-description { font-size: 1.2rem; max-width: 800px; margin: 0 auto 3rem; opacity: 0.9; animation: fadeInUp 1s ease 0.4s both; }
.service-areas { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; animation: fadeInUp 1s ease 0.6s both; }
.area-badge {
  background: rgba(255,255,255,0.2); padding: 15px 30px; border-radius: 30px;
  font-weight: bold; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3);
}

/* Services */
.services { padding: 80px 0; background: #f8fafc; }
.section-title {
  text-align: center; font-size: 2.8rem; margin-bottom: 3rem; color: #1e3c72; position: relative;
}
.section-title::after {
  content: ''; width: 80px; height: 4px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  display: block; margin: 20px auto; border-radius: 2px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; margin-top: 4rem; }
.service-category {
  background: white; padding: 40px; border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-category::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(45deg, #1e3c72, #2a5298); }
.service-category:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.service-category h3 { font-size: 1.8rem; color: #1e3c72; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.service-icon {
  width: 30px; height: 30px; background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold;
}
.service-list { list-style: none; }
.service-list li {
  padding: 12px 0; border-bottom: 1px solid #e2e8f0;
  position: relative; padding-left: 20px; transition: all 0.2s ease;
}
.service-list li::before { content: '✓'; position: absolute; left: 0; color: #16a085; font-weight: bold; }
.service-list li:hover { color: #1e3c72; transform: translateX(5px); }
.service-list li:last-child { border-bottom: none; }

/* About */
.about { padding: 80px 0; background: white; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; color: #1e3c72; margin-bottom: 2rem; }
.about-text p { font-size: 1.1rem; margin-bottom: 1.5rem; color: #555; }
.about-features { list-style: none; margin-top: 2rem; }
.about-features li { padding: 10px 0; padding-left: 30px; position: relative; font-size: 1.1rem; }
.about-features li::before { content: '★'; position: absolute; left: 0; color: #ffd700; font-size: 1.2rem; }
.about-image { text-align: center; }
.about-image-placeholder {
  width: 400px; height: 400px; background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #1e3c72; margin: 0 auto; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Quote */
.quote-section {
  padding: 80px 0; background: linear-gradient(135deg, #1e3c72, #2a5298); color: white;
}
.quote-form {
  max-width: 600px; margin: 0 auto; background: rgba(255,255,255,0.95); padding: 40px;
  border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #1e3c72; box-shadow: 0 0 0 3px rgba(30,60,114,0.2); outline: none;
}
.submit-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e); color: white; padding: 14px 28px;
  border: none; border-radius: 30px; font-size: 1.1rem; font-weight: bold;
  cursor: pointer; transition: all 0.3s ease; width: 100%;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,107,53,0.4); }

/* Footer */
.footer { background: #1e3c72; color: white; padding: 60px 0 20px; }
.footer-content {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 40px;
}
.footer-section h3 { margin-bottom: 1rem; color: #ffd700; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a { color: white; text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: #ffd700; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.9rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) { .about-content { grid-template-columns: 1fr; } .about-image-placeholder { width: 100%; max-width: 500px; height: 300px; } }
@media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero .slogan { font-size: 1.2rem; } .service-areas { flex-direction: column; gap: 1rem; } .header-content { flex-direction: column; } }
@media (max-width: 576px) { .logo-text { font-size: 1.5rem; } .phone { font-size: 0.9rem; } .cta-button { padding: 10px 20px; font-size: 0.9rem; } .hero h1 { font-size: 2rem; } .hero-description { font-size: 1rem; } .service-category { padding: 25px; } .section-title { font-size: 2rem; } }
/* Owner (about) card styles */
.about-image { text-align: center; display: flex; align-items: center; justify-content: center; }

.owner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent; /* keep as-is or set a subtle bg if needed */
}

.owner-photo {
  width: 180px;            /* adjust size as you like */
  height: 180px;           /* keep square so border-radius works */
  border-radius: 50%;      /* makes it circular */
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(2,6,23,0.12);
  border: 4px solid rgba(255,255,255,0.9); /* subtle frame; change color for dark bg */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.owner-photo:hover,
.owner-photo:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(2,6,23,0.18);
}

.owner-caption { text-align: center; max-width: 340px; }

.owner-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3c72; /* keep consistent with your theme */
}

.owner-role {
  font-size: 0.95rem;
  color: #f7931e; /* accent */
  font-weight: 600;
  margin-top: 3px;
}

.owner-expertise {
  font-size: 0.95rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.33;
}

/* Responsive: slightly smaller image on tiny screens */
@media (max-width: 480px) {
  .owner-photo { width: 140px; height: 140px; }
  .owner-caption { max-width: 260px; }
}
