/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Typography & body */
body {
  font-family: 'Outfit', sans-serif;
  color: #222;
  background-color: #f7f9fc;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header with white background and flex layout */
.site-header {
  background-color: #f7f9fc;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: relative;
  z-index: 1001;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo styling */
.logo {
  height: 150px;
  width: auto;
}

/* Navigation styling */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: #004ea2; /* blue text */
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a.nav-btn:hover,
.main-nav a.nav-btn:focus {
  background-color: #004ea2;
  color: #fff;
  outline: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #0078d4; /* Bright blue */
  color: #fff;
  border: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #005ea2; /* Darker blue */
  outline: none;
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 0;
  background: white;
  text-align: center; /* Default for larger screens */
}

.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #004ea2;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #555;
}

/* Slider Section - Blue background */
.slider-section {
  background-color: #004ea2; /* Blue background */
  color: #fff;
  padding: 3rem 0;
  text-align: center; /* Default for larger screens */
}

.slider-section h2 {
  margin-bottom: 2rem;
  font-weight: 700;
}

.slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  font-size: 1.1rem;
}

.slide.active {
  display: block;
}

.slide img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works-section {
  background: #e9f2fc; /* Light blue background */
  padding: 3rem 0;
  text-align: center; /* Default for larger screens */
  color: #004ea2;
}

.how-it-works-section h2 {
  margin-bottom: 1rem;
}

.how-it-works-section p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: #222;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center; /* Default for larger screens */
  margin-bottom: 2rem;
  color: #004ea2;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section input,
.contact-section textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.contact-section button {
  align-self: self-start;
  width: 150px;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* ===== NAV TOGGLE ===== */

/* Hide the checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger styles */
.hamburger {
	margin-right: 40px;
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #004ea2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero uses larger font size for h1 */
.hero-section h1 {
  font-size: 3rem;
  color: #004ea2;
  margin-bottom: 1rem;
  text-align: center; /* Default for larger screens */
}

/* Features Section - with blue background and flex layout */
.features-section {
  background-color: #004ea2; /* Blue background */
  color: #fff;
  padding: 3rem 0;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  text-align: center; /* Default for larger screens */
  flex-wrap: wrap; /* wrap on small screens */
}

.features-section .feature {
  max-width: 90%;
  flex: 1 1 280px;
  /* add subtle background and rounding for cards */
  background: rgba(255 255 255 / 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  text-align: center; /* Default for larger screens */
}

.features-section .feature:hover {
  background: rgba(255 255 255 / 0.2);
}

.features-section .feature img {
  margin-bottom: 1rem;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}

/* Feature headings */
.features-section .feature h3 {
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #ffffffcc;
}

/* Feature paragraphs */
.features-section .feature p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Usecases styling */
.usecases {
  background-color: #f7f9fc;
  padding: 3rem 0;
  text-align: center; /* Default for larger screens */
  color: #222;
}

.usecases h2 {
  color: #004ea2;
  margin-bottom: 1rem;
}

.usecases p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

/* Download & About (cta) sections centered and padded */
.download-section,
.about-section {
  background: white;
  padding-top: 3rem;
  text-align: center; /* Default for larger screens */
  color: #004ea2;
}



.download-section h2,
.about-section h2 {
  margin-bottom: 1rem;
}

.download-section p,
.about-section p {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}



.download-section2,
.about-section2 {
  padding: 2rem 0;
  text-align: center; /* Default for larger screens */
  color: #004ea2;
  font-size: 2.5rem !important;
}



.download-section2 h2,
.about-section2 h2 {
  margin-bottom: 1.5rem;
}

.download-section2 h2,
.about-section2 h2 {
  font-size: 3rem !important;
}


/* Download & About (cta) sections centered and padded */
.download-section3,
.about-section3 {
  padding-top: 0rem;
  text-align: center; /* Default for larger screens */
  color: #004ea2;
}



.download-section3 h2,
.about-section3 h2 {
  margin-bottom: 1rem;
}

.download-section3 p,
.about-section3 p {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* Contact form styling inherited from previous CSS */

/* Buttons with consistent margin */
.btn {
  margin-top: 0.5rem;
}

.history-tracking-section {
 /* light blue background */
  padding: 20px 10px;
}

.row-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.column {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
  text-align: left; /* Default for larger screens */
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-column h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0a2c74;
}

.text-column p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}

/* --- New Combined Sections Styling --- */
.new-features-row {
  padding: 6rem 0;
  background: url('backgroundlist.webp') no-repeat center center fixed; /* Set the background image, no-repeat, centered, and fixed */
  background-size: cover; /* Cover the entire section */
  text-align: center;
  position: relative; /* Needed for parallax effect if content scrolls over */
  z-index: 1; /* Ensure content is above the background */
  color: #ffffff; /* Adjust text color for better contrast against the background */
}

/* Add an overlay to improve text readability on the background image */
.new-features-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark semi-transparent overlay */
  z-index: -1; /* Place the overlay behind the content but above the background image */
}

.new-features-row h2 {
  color: #ffffff; /* Change heading color to white for better contrast */
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  position: relative; /* Ensure heading is above the overlay */
  z-index: 2;
}

/* Flexbox for the Columns */
.row-split-new-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
  position: relative; /* Ensure columns are above the overlay */
  z-index: 2;
}

.column-new-section {
  /* This ensures columns are the same size on desktop */
  flex: 1 0 calc(50% - 1rem); /* flex-grow | flex-shrink | flex-basis. Half of container minus half the gap. */
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white background for column content */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow for definition */
  text-align: left;
  color: #222; /* Ensure text inside columns is dark and readable */
}

.column-new-section h3 {
  color: #004ea2;
  font-size: 1.8rem; /* Size for sub-headings */
  margin-bottom: 1rem;
}

.column-new-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}


/* --- Responsive Design (Media Queries) --- */
@media (max-width: 1088px) {
	
	
	
	
	.text-column h2 {
  font-size: 1.45rem;
  margin-bottom: 15px;
  color: #0a2c74;
}


  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide menu by default */
  .main-nav {
    position: absolute;
    top: 140px; /* header height + margin */
    right: 1rem;
    background-color: white;
    width: 260px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-direction: column;
    display: none;
    z-index: 1000;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #eee;
    list-style: none;
  }

  .main-nav li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    padding: 12px 16px;
    display: block;
    color: #004ea2;
  }

  .main-nav a.nav-btn:hover,
  .main-nav a.nav-btn:focus {
    background-color: #004ea2;
    color: white;
    outline: none;
  }

  /* Show menu when checkbox is checked */
  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  /* Text Alignment for Mobile - Setting specific text elements to left */
  .hero-section h1,
  .hero-section h2,
  .hero-section p {
    text-align: left;
  }

  /* Reduce font size for h1 in hero-section on mobile */
  .hero-section h1 {
    font-size: 2rem; /* Adjusted font size for mobile */
  }

  .slider-section h2,
  .slider-section p { /* Assuming there's a paragraph in slider-section */
    text-align: left;
  }

  .how-it-works-section h2,
  .how-it-works-section p {
    text-align: left;
  }

  .features-section .feature h3,
  .features-section .feature p {
    text-align: left; /* Align text within individual feature cards */
  }

  .usecases h2,
  .usecases p {
    text-align: left;
  }

  .download-section h2,
  .download-section p {
    text-align: left;
  }

  .about-section h2,
  .about-section p {
    text-align: left;
  }
  
  
  .download-section2 h2,
  .download-section2 p {
    text-align: left;
  }

  .about-section2 h2,
  .about-section2 p {
    text-align: left;
  }


  .download-section3 h2,
  .download-section3 p {
    text-align: left;
  }

  .about-section3 h2,
  .about-section3 p {
    text-align: left;
  }


  .contact-section h2 {
    text-align: left;
  }

  .row-split {
    flex-direction: column;
  }
  .column {
    flex: 1 1 100%;
    /* No explicit text-align here, apply to children for granular control */
  }
  .text-column h2,
  .text-column p {
    text-align: left; /* Ensure text within split columns is left-aligned */
  }

  /* Ensure images remain centered or at their default position within their containers */
  .hero-section img,
  .slider-section .slide img,
  .features-section .feature img,
  .image-column img {
    /* No change needed for images as they are often block-level elements
        and will center automatically with margin: 0 auto; if display: block; is set.
        If they are inline, text-align: center on parent would center them.
        Since we removed text-align: left on parent for images, they'll revert
        to their default or explicit centering. */
  }

  /* Responsive adjustment for New Combined Sections: columns stack */
  .new-features-row h2 {
    font-size: 2rem; /* Adjust main heading size for mobile */
    text-align: left; /* Align main heading left on mobile */
  }

  .row-split-new-sections {
    flex-direction: column; /* Stacks columns vertically on small screens */
    gap: 1.5rem; /* Reduce gap when stacked */
  }

  .column-new-section {
    flex-basis: 100%; /* Each column takes full width on mobile when stacked */
    padding: 1rem; /* Adjust padding for mobile */
  }
}


/* --- Usecases Section Column Layout --- */
.usecases-content-wrapper {
    display: flex; /* Enable Flexbox for column layout */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 2rem; /* Space between columns */
    align-items: center; /* Vertically align items in the center */
    margin-top: 2rem; /* Add some space below the main heading */
}

.usecases-text-column,
.usecases-image-column {
    flex: 1 1 calc(50% - 1rem); /* Distribute space: roughly 50% width minus half the gap */
    min-width: 300px; /* Ensure columns don't get too narrow before wrapping */
}

.usecases-text-column p {
    font-size: 1.1rem; /* Adjust paragraph font size as needed */
    line-height: 1.7;
    text-align: left; /* Ensure text aligns left within its column */
}

/* Ensure the slideshow container adjusts within its new column */
.slideshow-container {
    /* Keep existing slideshow-container styles */
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0; /* Remove top margin if it conflicts with wrapper gap */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 400px; /* IMPORTANT: Maintain a fixed height for the container */
}

/* Keep existing .slide-image and @keyframes fadeinout styles */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fadeinout 12s infinite;
    border-radius: 8px;
}

.slide-image:nth-child(1) {
    animation-delay: 0s;
}

.slide-image:nth-child(2) {
    animation-delay: 4s;
}

.slide-image:nth-child(3) {
    animation-delay: 8s;
}

@keyframes fadeinout {
    0% { opacity: 0; }
    8% { opacity: 1; }
    25% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
}


/* --- Responsive Adjustments for Usecases Section --- */
@media (max-width: 768px) {
    .usecases-content-wrapper {
        flex-direction: column; /* Stack columns vertically on small screens */
        gap: 1.5rem; /* Adjust gap for stacked layout */
    }

    .usecases-text-column,
    .usecases-image-column {
        flex: 1 1 100%; /* Take full width on small screens */
        min-width: auto; /* Remove minimum width constraint */
        text-align: left; /* Ensure text is left-aligned in column */
    }
		.usecases-content-wrapper{
   align-items: normal;
  }
}


.download-badges {

    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .store-badge {
    height: 60px;
  }

  @media (min-width: 768px) {
    .download-badges {
      justify-content: center;
    }
  }
  
.image-full-width {
  width: 100%;
  margin-top: 40px; /* Space between text/button and image */
  overflow: hidden; /* Prevents image overflow */
}

.image-full-width img {
  width: 100%;           /* Full width of parent */
  height: 450px;         /* Fixed height */
  object-fit: cover;     /* Ensures image fills area without distortion */
  display: block;        /* Removes extra space below image */
}





.whitebgg {

background-color: #ffffff !important;

}

.bggrey {
 background-color: #f7f9fc; 
}


.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

/* Each wrapper fits nicely on mobile (2 rows) */
.icon-wrapper {
  width: 20%;
  max-width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Removed animation here for now, we'll apply it to the img or use a different approach */
}
/* Icon image style */
.icon-wrapper img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(88%) saturate(3161%) hue-rotate(183deg) brightness(91%) contrast(101%);
  animation-name: scale-cycle;
  animation-duration: 20s;        /* Total loop duration for all icons */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

/* Keyframes for one icon's scaling during its 2s slot inside the 20s loop */
@keyframes scale-cycle {
  0%, 7.5%, 100% {
    transform: scale(1);
  }
  12.5%, 17.5% {
    transform: scale(1.45);
  }
  22.5% {
    transform: scale(1);
  }
}

/* Animation delay offsets to stagger each icon by 2 seconds */
.icon-wrapper:nth-child(1) img { animation-delay: 0s; }
.icon-wrapper:nth-child(2) img { animation-delay: 2s; }
.icon-wrapper:nth-child(3) img { animation-delay: 4s; }
.icon-wrapper:nth-child(4) img { animation-delay: 6s; }
.icon-wrapper:nth-child(5) img { animation-delay: 8s; }
.icon-wrapper:nth-child(6) img { animation-delay: 10s; }
.icon-wrapper:nth-child(7) img { animation-delay: 12s; }
.icon-wrapper:nth-child(8) img { animation-delay: 14s; }
.icon-wrapper:nth-child(9) img { animation-delay: 16s; }
.icon-wrapper:nth-child(10) img { animation-delay: 18s; }


/* 🖥 Desktop: force a single line */
@media (min-width: 768px) {
	
	

  .image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .icon-wrapper img {
    width: 85px;
    height: 85px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(33%) sepia(88%) saturate(3161%) hue-rotate(183deg) brightness(91%) contrast(101%);
  animation-name: scale-cycle;
  animation-duration: 20s;        /* Total loop duration for all icons */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  }

  .image-row {
    flex-wrap: nowrap;
  }

  .icon-wrapper {
    flex: 1 1 auto;
    width: auto;
    max-width: 100px;
  }
}

.highlight-word {
  color: inherit;
  transition: color 0.3s ease-in-out;
  animation: text-highlight 20s ease-in-out infinite;
}

.highlight-1  { animation-delay: 0s; }
.highlight-2  { animation-delay: 2s; }
.highlight-3  { animation-delay: 4s; }
.highlight-4  { animation-delay: 6s; }
.highlight-5  { animation-delay: 8s; }
.highlight-6  { animation-delay: 10s; }
.highlight-7  { animation-delay: 12s; }
.highlight-8  { animation-delay: 14s; }
.highlight-9  { animation-delay: 16s; }
.highlight-10 { animation-delay: 18s; }

@keyframes text-highlight {
  0%, 7.5%, 100% {
    color: inherit;
  }
  12.5%, 17.5% {
    color: #0078d4; /* Sync with icon highlight color */
  }
  22.5% {
    color: inherit;
  }
}



.login-btn a {
  background-color: #0078d4;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.login-btn a:hover {
  background-color: #005fa3;
}


.site-footer {
  background-color: #0f1621;
  color: #fff;
  padding: 20px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-brand {
  max-width: 500px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 10px;
}

.brand-info {
 text-align: left;
  font-size: 12px;
  line-height: 1.6;
  color: #d1d1d1;
}

.footer-links h3 {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 18px;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.social-links li img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links li img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.footer-logo {
  width: 110px;
}










/* ===== Auth Section ===== */
.auth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
  min-height: 70vh;
}

.auth-container {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 1080px;
  width: 100%;
}

/* Left Column */
.auth-left {
  background: linear-gradient(135deg, #007BFF, #00C897);
  color: white;
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.auth-left h2 {
  margin-bottom: 15px;
}

.auth-left p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-secondary {
  background-color: white;
  color: #007BFF;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.85);
}

/* Right Column */
.auth-right {
  flex: 1;
  padding: 40px 30px;
}

.auth-right h6{
	color: #0a2c74;
}

.auth-right h2 {
  margin-bottom: 0px;
  font-size: 1.6rem;
  color: #333;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #007BFF;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Google Button */
.google-login {
  margin-bottom: 20px;
  text-align: center;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #ccc;
  color: #444;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-google img {
  width: 20px;
  height: 20px;
}

.btn-google:hover {
  background-color: #f5f5f5;
}

/* Links */
.form-switch {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

.form-switch a {
  color: #007BFF;
  text-decoration: none;
  font-weight: 600;
}

.form-switch a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
  }
  .auth-left, .auth-right {
    flex: unset;
    width: 100%;
    text-align: left; /* changed from center */
  }
  .auth-left h2,
  .auth-left p {
    text-align: left;
  }
}



/* Links under form */
.auth-links {
  margin-top: 15px;
  text-align: center;
  font-size: 0.85rem;
}

.auth-links a {
  color: #007BFF;
  text-decoration: none;
  margin: 0 8px;
}

.auth-links a:hover {
  text-decoration: underline;
}




.g-recaptcha {
  margin: 15px 0;
}
















/* Desktop styles */
@media (min-width: 768px) {
  .footer-brand {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    margin-right: 20px;
    width: 110px;
  }

  .brand-info {
    max-width: 500px;
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.6;
  }
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px;
}

.map-column {
  grid-row: 1 / span 2; /* spans both rows */
  height: 100%;
  min-height: 400px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-column input,
.form-column textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-column button {
  padding: 12px;
  font-size: 16px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-column button:hover {
  background-color: #005fa3;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .map-column {
    grid-row: auto;
    height: 300px;
  }

  .form-column {
    width: 100%;
  }
}



.form-column h4 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  color: #333;
}


  .hidden {
    display: none;
  }

.center-button {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

  .btn-toggle {
	  
    margin: 20px;
    padding: 10px 20px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .btn-toggle:hover {
    background-color: #005a9e;
  }

  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }

  .map-column {
    flex: 1;
    min-width: 300px;
    height: 560px;
  }

  .form-column {
    flex: 1;
    min-width: 300px;
  }

  .form-column input,
  .form-column textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
  }

  .form-column button {
    margin-top: 10px;
  }





@media (max-width: 768px) {
.image-full-width img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: flex-start;
  gap: 30px;
}

.brand-info {
    text-align: center;
}

.footer-logo {
    width: 130px;
}

}






.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-left {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #ccc;
  margin: 0 10px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

/* Mobile: reverse order so rights reserved is at bottom */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    order: 1;
    margin-bottom: 10px;
  }
  .footer-left {
    order: 2;
  }
}
