/* Global */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  padding: 0;
  background: linear-gradient(135deg, #1a2a6c, #d4af37); /* navy + gold gradient */
  color: #333;
}
main {
  flex: 1;               /* pushes footer down */
}

/* Headings */
h1 {
  text-align: center;
  color: #d4af37; /* gold headings */
  margin-top: 30px;
}

/* Cards */
.card {
  width: 300px;
  height: 200px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 12px;
  background: #d4af37;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Navigation Bar */
.navbar {
  background: #d4af37;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  osition: fixed;   /* keep navbar fixed */
  top: 0;            /* stick to top */
  left: 0;
  width: 100%;       /* full width */
  z-index: 1000;     /* stay above other elements */
}
.navbar a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}
.navbar a:hover {
  background: #333;
  color: #fff;
}
.navbar a.active {
  background: #fff;
  color: #d4af37;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.tabs button,
.tablink {
  background: #d4af37;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.tabs button:hover,
.tablink:hover {
  background: #333;
  color: #fff;
}
.tabs button.active {
  background-color: #d4af37;
  color: #fff;
}

/* Forms */
form {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
form h2 {
  color: #1a2a6c;
  margin-top: 20px;
}
input, textarea, select, button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
form button {
  background: #d4af37;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background: #333;
  color: #fff;
}

/* Dots navigation */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #d4af37;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}
.dot:hover {
  background-color: #333;
}


/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a2a6c, #d4af37); /* navy + gold gradient */
  display: flex;
  justify-content: flex-start;   /* push content to the left */
  align-items: center;           /* vertical center */
  padding: 0px;                 /* spacing inside */
}

.hero-content {
  max-width: 500px;              /* limit width */
  text-align: left;              /* align text to the left */
}

.hero-content h1 {
  font-size:2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 5px;
  text-align: center;
}

.hero-content .btn {
  background: #d4af37;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-content .btn:hover {
  background: #1a2a6c;
  color: #fff;
  transform: translateY(-2px);
}

/* Stick Figures */
.container {
  display: flex;
  justify-content:stretch;
  gap: 200px;
}
.speed img {
  width: 150px;
  animation: run 7s infinite alternate ease-in-out;
}
.quality img {
  width: 150px;
  animation: pulse 2s infinite ease-in-out;
}
p {
  font-weight: bold;
  margin-top: 10px;
}
@keyframes run {
  from { transform: translateX(0); }
  to { transform: translateX(50px); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Budget-Friendly Stick */
.budget-container {
  display: inline-block;
  background: #fff;
  padding: 80px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.budget-img {
  width: 180px;
  transition: transform 0.5s ease;
}
.budget-img:hover {
  transform: scale(1.1);
}
.caption {
  font-size: 20px;
  font-weight: bold;
  color: #1a2a6c;
  margin-top: 10px;
}

/* Updates Section */
.page-right-center {
  display: flex;
  justify-content: flex-end;   /* push to right side */
  align-items: center;         /* vertical center */
  height: 60vh;                /* centers within middle portion */
  margin-top: 40px;            /* spacing below hero heading */
  padding-right: 60px;         /* spacing from right edge */
}

/* Full page layout: content left, updates right */
.page-layout {
  display: flex;
  justify-content: space-around; /* left and right split */
  align-items: baseline;            /* vertical center */
  height: 100vh;                  /* full viewport height */
  padding: 0 40px;                /* spacing from edges */
}
/* Updates box styling */
.updates-container {
  max-width: 300px;
  text-align: center;
  background: #fff8dc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}
.updates-container h2 {
  color:#1a2a6c;
  margin-bottom: 15px;
  text-align: center;
  
}
.updates {
  height: 120px;
  overflow: hidden;
  position: relative;
}
.updates-text {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
}
.updates-text p {
  margin: 10px 0;
  font-size: 1em;
  color: #333;
  font-weight: 500;
}
@keyframes scroll-up {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}


/* Updates section sits below hero */
.updates-section {
  height: 400px;              /* fixed section height */
  display: flex;
  justify-content: flex-end;  /* push to right */
  align-items: center;        /* vertical center within section */
  padding-right: 60px;
  margin-top: 40px;           /* spacing below hero */
  background: #f9f9f9;
}

/* Updates box styling */
.updates-container {
  max-width: 300px;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.updates-container h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.updates {
  height: 120px;
  overflow: hidden;
  position: relative;
}

.updates-text {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
}

.updates-text p {
  margin: 10px 0;
  font-size: 1em;
  color: #333;
  font-weight: 500;
}

@keyframes scroll-up {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}

/* Unified section layout */
.main-section {
  display: flex;
  justify-content: space-between; /* left and right split */
  align-items: center;            /* vertical center */
  height: 70vh;                   /* section height */
  padding:40px;                /* spacing from edges */
  margin-top: 40px;               /* spacing below hero/nav */
}

/* Left side content (Speed + Quality) */
.left-content {
  display: flex;
  gap: 80px; /* space between Speed and Quality */
}

.speed img {
  width: 150px;
  animation: run 7s infinite alternate ease-in-out;
}
.quality img {
  width: 150px;
  animation: pulse 2s infinite ease-in-out;
}
p {
  font-weight: bold;
  margin-top: 10px;
}

/* Updates box styling */
.updates-container {
  max-width: 500px;
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.updates-container h2 {
  color: #d4af37;
  margin-bottom: 15px;
}
.updates {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.updates-text {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
}
.updates-text p {
  margin: 12px 0;
  font-size:1.1em;
  color: #333;
  font-weight: 500;
}

/* Animations */
@keyframes run {
  from { transform: translateX(0); }
  to { transform: translateX(50px); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes scroll-up {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}
/* footer */
footer {
  background: #1a2a6c;   /* optional: navy background */
  text-align: center;
  padding: 20px;
}
main {
  flex: 1;               /* pushes footer down */
}
footer p {
  color: #d4af37;        /* gold text color */
  font-weight: 600;      /* make it bold */
  margin: 0;
}

/* Refer */




.refer-container {
  background: #fff;
  max-width: 400px;
  margin: 40px auto;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
  max-height: 80vh;       /* limit vertical height */
  overflow-y: auto;
}

.refer-container h1 {
  color: #1a2a6c;
  margin-bottom: 10px;
}

.refer-container p {
  margin-bottom: 20px;
  color: #555;
}

.refer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.refer-form label {
  font-weight: bold;
  text-align: left;
}

.refer-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.refer-form button {
  background: #d4af37;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.refer-form button:hover {
  background: #1a2a6c;
}

footer {
  margin-top: auto;
  background: #1a2a6c;
  text-align: center;
  padding: 15px;
}

footer p {
  color: #d4af37;
  margin: 0;
  font-weight: 600;
}
.refer-form h2 {
  margin-top: 20px;
  color: #1a2a6c;
  font-size: 1.2em;
}
.gallery {
  display: flex;
  gap: 20px;                 /* spacing between images */
  padding: 20px;
  overflow-x: auto;          /* enable horizontal scroll */
  white-space: nowrap;       /* keep images in one line */
  scroll-behavior: smooth;
}

.gallery img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  flex-shrink: 0;            /* prevent shrinking */
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

.about {
  background: #ffffff;          /* clean white background */
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 40px auto;
}

.about-header h1 {
  color: #1a2a6c;               /* navy heading */
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-header p {
  color: #555;                  /* softer gray text */
  line-height: 1.6;
  font-size: 1.1em;
}

.about-content h2 {
  color: #d4af37;               /* gold subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content li {
  margin-bottom: 12px;
  color: #333;                  /* dark gray for body text */
  line-height: 1.5;
}

.about-content strong {
  color: #1a2a6c;               /* navy for emphasis */
}

.about-content p {
  color: #444;
  line-height: 1.6;
  font-size: 1.05em;
}
/* export photo */


.export-banner {
  margin-top: 20px;
  text-align: center;
  transform: scale(0.8); /* reduces overall size */
}

.export-banner img {
  width: 60%; /* smaller image size */
  max-width: 500px;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.export-banner:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.export-text {
  margin-top: 10px;
  font-size: 1.1em;
  color: #ffffff; /* white text */
  font-weight: 500;
  transition: color 0.4s ease;
}

.export-banner:hover .export-text {
  color: #00ffff; /* optional hover color */
}
.insurance-form {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  width: 400px;
}

.insurance-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2a5298;
}

.insurance-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.insurance-form input,
.insurance-form select,
.insurance-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.insurance-form button {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background: #2a5298;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.insurance-form button:hover {
  background: #1e3c72;
}
/* Real Estate Form Styling */
#realestate {
  max-width: 600px;
  margin: 10px auto;
  background: #f9f9f9;
  border-radius: 05px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#realestate h2 {
  text-align: center;
  margin-bottom: 1px;
  color: #2c3e50;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.form-container label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.form-container input,
.form-container select {
  padding:0px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.form-container button {
  margin-top: 20px;
  padding: 12px;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background: #34495e;
}

