/* CSS will go here */
:root {
  --primary: #005f96;
  --secondary: #ff6b35;
  --dark: #292929;
  --light: #f5f5f5;
  --gray: #e0e0e0;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  background-color: var(--light);
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn:hover {
  background-color: #e05a2b;
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: white;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  margin: 15px auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  color: var(--secondary);
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background:url(images/homepage1.webp)
      no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgb(253, 223, 74);
  position: relative;
  font-weight: 800px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.962);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-btns .btn {
  font-size: 1rem;

}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* About Section */
.about {
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background-color: var(--light);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-content p {
  margin-bottom: 20px;
  color: #666;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 500;
  transition: var(--transition);
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover {
  color: #e05a2b;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* History Section */
.history {
  background-color: white;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline:before {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 20px;
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-content p {
  margin-bottom: 0;
}

.timeline-date {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.timeline-item:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--secondary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  z-index: 1;
}

.timeline-item:nth-child(even):after {
  left: -10px;
}

/* Gallery Section */
.gallery {
  background-color: var(--light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: white;
  border: 1px solid var(--gray);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 95, 150, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-overlay a {
  color: white;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay a {
  transform: translateY(0);
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 95, 150, 0.9), rgba(0, 95, 150, 0.9)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      no-repeat center center/cover;
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-col p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.form-status {
  margin-top: 20px;
  width: 100%;
}

.success-message {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  padding: 10px 15px;
  border-radius: 4px;
  border-left: 4px solid #28a745;
}

.error-message {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  padding: 10px 15px;
  border-radius: 4px;
  border-left: 4px solid #dc3545;
}

.fa-spinner {
  margin-right: 8px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e05a2b;
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .hero-content{
    text-align: center;
    max-width: 900px;
  }
  .about-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  .timeline:before {
    left: 40px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:after {
    left: 30px;
  }

  .timeline-item:nth-child(even):after {
    left: 30px;
  }
 

.hero-btns .btn {
  font-size: 1rem;
  margin:0;
}
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }



  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  
}

@media (max-width: 576px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }
  
}

/* Form design */
.contact-request-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-title {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.input-field {
  margin-bottom: 1.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  background-color: #2980b9;
}

.form-status-message {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  text-align: center;
  display: none;
}

/* Success and error states */
.form-status-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
}

.form-status-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-request-form {
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.5rem;
  }
}
/* gq-quote-form.css */
.gq-quote-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gq-form-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 91, 187, 0.1);
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.gq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gq-form-title {
  color: #005bbb; /* Blue */
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.gq-input-group {
  position: relative;
}

.gq-form-input,
.gq-form-select,
.gq-form-textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.gq-form-input:focus,
.gq-form-select:focus,
.gq-form-textarea:focus {
  border-color: #005bbb; /* Blue */
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 91, 187, 0.1);
  background-color: #fff;
}

.gq-form-textarea {
  padding: 1rem;
  min-height: 150px;
  resize: vertical;
}

.gq-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #005bbb; /* Blue */
}

.gq-form-select {
  appearance: none;
  cursor: pointer;
}

.gq-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #005bbb; /* Blue */
}

.gq-submit-btn {
  position: relative;
  background: #ff6b35; /* Orange */
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.gq-btn-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.gq-btn-icon {
  transition: transform 0.3s ease;
}

.gq-form-status {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.2rem;
  color: #005bbb; /* Blue */
}

/* Interactive Elements */
.gq-submit-btn:hover {
  background: #e05a2b; /* Darker orange */
}

.gq-submit-btn:hover .gq-btn-hover {
  transform: translateX(0);
}

.gq-submit-btn:hover .gq-btn-icon {
  transform: translateX(5px);
}

.gq-form-input:hover,
.gq-form-select:hover {
  border-color: #005bbb; /* Blue */
}

/* Responsive Design */
@media (max-width: 768px) {
  .gq-quote-section {
    padding: 1.5rem;
  }
  
  .gq-form-container {
    padding: 2rem 1.5rem;
  }
  
  .gq-form-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gq-quote-section {
    padding: 1rem;
  }
  
  .gq-form-container {
    padding: 1.5rem 1rem;
    border-radius: 8px;
  }
  
  .gq-form-input,
  .gq-form-select,
  .gq-form-textarea {
    padding-left: 2.5rem;
  }
  
  .gq-input-icon {
    left: 0.8rem;
    font-size: 1rem;
  }
  
  .gq-submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Mobile menu button - NEW */
.mobile-menu-btn {
  display: none; /* Hidden by default on desktop */
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  z-index: 1001;
}

/* Nav container wrapper - NEW */
.nav-container {
  transition: all 0.3s ease;
}

/* Mobile menu state - NEW */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 5rem 2rem;
    transition: right 0.3s ease;
  }
  
  .nav-container.active {
    right: 0;
  }
  
  /* Only modify existing nav-links for mobile */
  .nav-links {
    flex-direction: column;
  }
  
  /* Body scroll lock - NEW */
  body.menu-open {
    overflow: hidden;
  }
}