/* style.css */

/* Global resets & variables */
:root {
  --primary: #002f6c;
  --secondary: #f2a900;
  --light: #f9f9f9;
  --dark: #333;
  --text: #444;
  --border: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-color: purple;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 0.5em;
}
.btn.secondary {
  background: var(--secondary);
}
.btn:hover {
  opacity: 0.9;
}

/* Hero */
.hero {
  background: var(--light);
  padding: 3em 0;
  text-align: center;
  color: purple;
}
.hero .logo {
  font-size: 2.5em;
  color: var(--primary);
  line-height: 1;
}
.hero .logo span {
  color: var(--secondary);
  font-size: 0.6em;
  letter-spacing: 2px;
}
.hero .subtitle {
  margin: 1em 0 2em;
  font-size: 1em;
  color: var(--dark);
}
.hero-buttons {
  color: pink;
}

/* Tracking */
.tracking {
  background: #fff;
  padding: 2em 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tracking h2 {
  margin-bottom: 0.75em;
  color: var(--primary);
}
.track-form {
  display: inline-flex;
}
.track-form input {
  padding: 0.75em;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 4px 0 0 4px;
  width: 250px;
}
.track-form button {
  padding: 0.75em 1em;
  border: 1px solid var(--border);
  border-radius: 0 4px 4px 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}
.example {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: var(--text);
}

/* Call Center */
.call-center {
  background: var(--light);
  padding: 2em 0;
}
.call-center h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5em;
}
.call-text,
.phone {
  text-align: center;
}
.phone {
  font-size: 1.5em;
  color: var(--secondary);
  margin-bottom: 1em;
}
.cc-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
}
.cc-details > div {
  flex: 1;
  min-width: 200px;
  background: #fff;
  padding: 1em;
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* Services */
.services {
  padding: 3em 0;
}
.services h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5em;
}
.services-intro {
  max-width: 700px;
  margin: 0 auto 2em;
  text-align: center;
}
.service-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5em;
  background-image: url('Services Images\5.jpg');
}
.service-item {
  flex: 1;
  min-width: 250px;
  border: 1px solid var(--border);
  padding: 1em;
  border-radius: 4px;
}

/* Testimonials */
.testimonials {
  background: var(--light);
  padding: 3em 0;
}
.testimonials h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1em;
}
.test-list {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
}
.test-item {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 1em;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.stars {
  margin-top: 0.5em;
  color: var(--secondary);
}

/* Stats */
.stats {
  padding: 2em 0;
  text-align: center;
}
.stats .stat {
  display: inline-block;
  width: 22%;
  min-width: 120px;
  margin: 0.5em;
}
.stats h3 {
  color: var(--primary);
  margin-bottom: 0.5em;
}

/* Year In Numbers */
.year-numbers {
  padding: 3em 0;
  background: #fff;
  text-align: center;
}
.year-numbers .quote {
  max-width: 700px;
  margin: 0 auto 1em;
  font-style: italic;
}
.attribution {
  color: var(--dark);
  font-weight: bold;
}

/* Blog & News */
.blog-news {
  padding: 3em 0;
  background: var(--light);
}
.blog-news h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.25em;
}
.news-intro {
  text-align: center;
  margin-bottom: 1.5em;
}
.news-list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-item {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 1em;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.blog-news .btn {
  display: block;
  text-align: center;
  margin: 2em auto 0;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #eee;
  padding: 2em 0 1em;
}
.footer-container {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-info {
  flex: 1;
  min-width: 250px;
}
.footer-links {
  flex: 1;
  min-width: 200px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin: 0.5em 0;
}
.footer-links a {
  color: #eee;
  text-decoration: none;
}
.subscribe {
  flex: 1;
  min-width: 250px;
}
.subscribe form {
  display: flex;
  margin-top: 0.5em;
}
.subscribe input {
  flex: 1;
  padding: 0.5em;
  border: none;
  border-radius: 4px 0 0 4px;
}
.subscribe button {
  padding: 0.5em 1em;
  border: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.footer-bottom {
  text-align: center;
  margin-top: 1em;
  font-size: 0.9em;
  border-top: 1px solid #555;
  padding-top: 1em;
}
/* About Page */
.about-hero {
  background-image: url('8.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5em 0;
  text-align: center;
}

.mission-vision {
  padding: 3em 0;
  background: var(--light);
}
.two-col {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}
.two-col .box {
  flex: 1;
  background: #fff;
  padding: 2em;
  border: 1px solid var(--border);
  border-radius: 6px;
}

/* Timeline */
.history {
  padding: 3em 0;
}
.timeline {
  list-style: none;
  padding-left: 0;
}
.timeline li {
  padding: 1em 0;
  border-left: 3px solid var(--primary);
  margin-left: 1em;
  padding-left: 1em;
  position: relative;
}
.timeline li::before {
  content: "•";
  position: absolute;
  left: -1em;
  color: var(--secondary);
  font-size: 1.5em;
}

/* Team */
.team {
  padding: 3em 0;
  background: var(--light);
  text-align: center;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 2em;
}
.team-member {
  flex: 1;
  min-width: 250px;
}
.team-member img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  border: 4px solid var(--primary);
}
.team-member h3 {
  margin-top: 1em;
  color: var(--primary);
}
.team-member p {
  font-size: 0.9em;
  color: var(--text);
}

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 3em 1em;
}
.cta-banner h2 {
  margin-bottom: 0.5em;
}
.cta-banner p {
  margin-bottom: 1.5em;
}
/* Contact Page Styles */
.contact-hero {
  background-image: url('22.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5em 0;
  text-align: center;
}

.contact-wrapper {
  background: linear-gradient(145deg, #f5f7fa, #e4ecf4);
  padding: 4em 0;
}

.contact-container {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
}

.contact-form-box,
.contact-info-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.contact-form-box h2,
.contact-info-box h2 {
  margin-bottom: 1em;
  color: var(--primary);
}

.contact-form-box form input,
.contact-form-box form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 1em;
  background: #f9f9f9;
}

.contact-form-box form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75em 2em;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form-box form button:hover {
  background: var(--secondary);
}

.map-section {
  padding: 2em 0;
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  border: none;
}