/*Global header section*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
  background-color: #f8f9fa;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
nav a:hover {
  color: #0066cc;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f8f9fa;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  top: 100%;
  left: 0;
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
}
.dropdown-menu a:hover {
  background-color: #e9ecef;
  color: #0066cc;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* End of header section */

/* Global Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
}
.hero .btn {
  background-color: #ff6f61;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero .btn:hover {
  background-color: #ff3b2e;
}
/* End of Global Hero Section */

/* index Hero */
.index-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/assets/images/Hero Image.webp") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}
.index-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.index-hero p {
  font-size: 20px;
  margin-bottom: 30px;
}
.index-hero .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.index-hero .btn:hover {
  background-color: #f0f0f0;
}
/* End of index Hero */

/* our product */
.work-profile {
  padding: 80px 20px;
  background-color: #f2f4f8;
  text-align: center;
}
.work-profile h2 {
  color: #667eea;
  font-size: 36px;
  margin-bottom: 30px;
}
.work-profile p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.profile-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.profile-cards .card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 250px;
}
.profile-cards .card h3 {
  color: #333;
  margin-bottom: 15px;
}
.profile-cards .card p {
  color: #555;
  font-size: 16px;
}
/* End of our product */

/* Services */
.services {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}
.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #667eea;
}
.service-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-cards .card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.service-cards .card h3 {
  margin-bottom: 15px;
  color: #333;
}
.service-cards .card p {
  color: #555;
  font-size: 16px;
}
/* End of Services */

/* Testimonials */
.testimonials {
  background-color: #f2f4f8;
  padding: 80px 20px;
  text-align: center;
}
.testimonials h2 {
  color: #667eea;
  margin-bottom: 40px;
}
.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-cards .card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.testimonial-cards .card p {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}
.testimonial-cards .card strong {
  color: #333;
}
/* End of Testimonials */

/* CTA */
.cta {
  background-color: #667eea;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.cta .btn {
  background-color: white;
  color: #667eea;
}
.cta .btn:hover {
  background-color: #f0f0f0;
}
/* End of CTA */

/* global Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
/* End of global Footer */

/* Responsive Design */
@media (max-width: 768px) {
  .profile-cards,
  .service-cards,
  .testimonial-cards {
    flex-direction: column;
    gap: 20px;
  }
  .logo-wrapper {
    align-items: flex-end;
  }
}
/* End of Responsive Design */

/*Logo & tagline in header*/
header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* semi-transparent for scroll effect */
  transition: all 0.3s ease;
}

/* Logo stacked with tagline */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* right-aligned */
}

.logo-wrapper .logo {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.tagline {
  font-style: italic;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 16px;
  color: #555;
  margin-top: 2px;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 0.3s ease;
}

/* Shrink effect on scroll */
header.shrink .logo-wrapper .logo {
  height: 35px;
}

header.shrink .logo-wrapper .tagline {
  font-size: 13px;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #0066cc;
}

/* Dropdown hover */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f8f9fa;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #e9ecef;
  color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
/* End of Logo & tagline in header */

/* Enhanced CTA Section */
:root {
  --color-primary: #667eea;
  --color-accent: #ff6600;
  --color-cta-gradient-start: var(--color-primary);
  --color-cta-gradient-mid: rgba(102, 126, 234, 0.8);
  --color-cta-gradient-end: var(--color-primary);
  --btn-bg: #fff;
  --btn-text: var(--color-accent);
  --btn-hover-bg: var(--color-accent);
  --btn-hover-text: #fff;
}

.cta {
  background: linear-gradient(
    135deg,
    var(--color-cta-gradient-start) 0%,
    var(--color-cta-gradient-mid) 60%,
    var(--color-cta-gradient-end) 100%
  );
  padding: 80px 20px;
  text-align: center;
  color: white;
  border-radius: 12px;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.cta .btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-text);
  transform: translateY(-2px);
}
/* End of Enhanced CTA Section */

/*profile card section*/
.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.profile-cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column; /* ensures description pushes bottom */
  height: 100%; /* ensures equal height in grid */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-cards .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.profile-cards .card h3 {
  margin: 12px 0 8px;
  flex-grow: 0;
}

.profile-cards .card p {
  flex-grow: 1; /* forces all cards to stretch evenly */
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.profile-cards .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.profile-cards .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.profile-cards .card p {
  flex-grow: 1;
}
/* End of profile card section */

/*about us page content section*/
.content {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.card h2 {
  color: #667eea;
  margin-bottom: 20px;
  text-align: left;
}
.card p {
  margin-bottom: 15px;
  font-size: 17px;
}
.card ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.card li {
  margin-bottom: 10px;
}

/* Contact person section */
.contact-person {
  margin-top: 15px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}
.contact-persons {
  display: flex;
  gap: 40px;
  flex-wrap: wrap; /* ensures stacking on small screens */
  justify-content: flex-start;
}

.contact-person {
  flex: 1;
  min-width: 250px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-person a {
  color: #667eea;
  text-decoration: none;
}

.contact-person a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-persons {
    flex-direction: column;
    gap: 20px;
  }
}
/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.contact-profile {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-left: 5px solid #FF6600; /* Accents the card with your brand color */
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-profile h3 {
  color: #003366;
  margin-bottom: 5px;
  font-size: 20px;
}

.designation {
  color: #666;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #FF6600;
}

.contact-item .icon {
  margin-right: 10px;
  font-size: 18px;
  width: 25px;
  text-align: center;
}

/* Responsive fix for smaller mobile screens */
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* End of about us page content section */

/*siter concerns section*/
/* Logo hover effect */
.sister-logo img:hover {
  transform: scale(1.08); /* Slight enlargement */
  transition: all 0.3s ease;
}

/* Optional subtle hover effect on container */
.logo-container:hover {
  transform: translateY(-2px);
}

/* Subtle hover effect for text link */
.description a:hover {
  color: #ff8533;
  text-decoration: underline;
}
/* Sister Concern Styling */
.sister-concern {
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto 20px;
}

.sister-concern h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.sister-concern p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 16px;
  color: #555;
}

.sister-concern a {
  display: inline-block;
}

.sister-concern img.sister-logo {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sister-concern img.sister-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* End of siter concerns section */

/*Floatinf Contact button*/
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff6600;
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.floating-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* End of Floatinf Contact button */
/*end of about us page content section */

/* Contact page content & cards */

/* Contact Page Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch; /* ensures equal height for cards */
  max-width: 1200px;
  margin: 40px auto;
}

.contact-card {
  flex: 1 1 45%; /* two cards per row, flexible */
  min-width: 350px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* allows button/map to stretch */
}

.contact-card h2 {
  text-align: center;
  color: #667eea;
  margin-bottom: 20px;
}

.contact-card p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.contact-card a {
  color: #ff6600;
  font-weight: bold;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .btn {
  margin-top: auto; /* pushes button to bottom if card stretches */
  padding: 12px 25px;
  background: #ff6600;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
}

.contact-map iframe {
  flex-grow: 1; /* map fills remaining height of card */
  width: 100%;
  border: 0;
  border-radius: 12px;
}

/* Responsive: stack cards on small screens */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* Animations */
.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card h2 {
  color: #667eea;
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}
.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.3s ease;
}
.card p:hover {
  color: #667eea;
}
.contact-icon {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.card p:hover .contact-icon {
  transform: translateX(5px);
  color: #ff6600;
}
.card a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}
.card a:hover {
  text-decoration: underline;
}
.card .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #ff6600;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.card .btn:hover {
  background: #ff8533;
  transform: translateY(-2px);
}

.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}
iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Floating Contact Buttons */
.floating-contact-btn {
  position: fixed;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: 0.3s;
  z-index: 999;
  font-size: 22px;
}
.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}
.email-btn {
  background-color: #667eea;
  bottom: 80px;
}
.email-btn:hover {
  background-color: #5a67d8;
}
.whatsapp-btn {
  background-color: #25d366;
  bottom: 20px;
}
.whatsapp-btn:hover {
  background-color: #20b858;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }
  .floating-contact-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .email-btn {
    bottom: 70px;
  }
  .whatsapp-btn {
    bottom: 15px;
  }
}
/* End of Contact page content & cards */

/* Get Quote Page Styles */

/* Title */
.section-title {
  text-align: center;
  font-style: oblique;
  font-size: 32px;
  color: rgba(102, 126, 234, 0.8);
  margin-bottom: 20px;
  font-weight: bold;
}

/* Form styling */
form#quoteForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

form#quoteForm input,
form#quoteForm textarea {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

form#quoteForm input:focus,
form#quoteForm textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.3);
  outline: none;
}

form#quoteForm button {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

form#quoteForm button:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(255, 102, 0, 0.4);
}

/* Drag & Drop Zone */
.drop-zone {
  border: 2px dashed #ff6600;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}
.drop-zone p {
  margin: 0;
  font-size: 14px;
}

/* File preview cards */
.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.file-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #f9f9f9;
  font-size: 13px;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #ddd;
}

.file-card button.remove-file {
  margin-left: auto;
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 2px 6px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

.file-card button.remove-file:hover {
  background: #ff1a1a;
}

.icon-pdf {
  color: #e63946;
}
.icon-doc {
  color: #457b9d;
}
.icon-xls {
  color: #2a9d8f;
}
.icon-img {
  color: #f4a261;
}
.icon-default {
  color: #6c757d;
}

/* Floating Contact Buttons */
.floating-contact-btn {
  position: fixed;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: 0.3s;
  z-index: 999;
  font-size: 22px;
}

.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
}

.email-btn {
  background-color: #667eea;
  bottom: 80px;
}
.email-btn:hover {
  background-color: #5a67d8;
}

.whatsapp-btn {
  background-color: #25d366;
  bottom: 20px;
}
.whatsapp-btn:hover {
  background-color: #20b858;
}

/* Responsive */
@media (max-width: 768px) {
  form#quoteForm {
    max-width: 90%;
  }
  .file-preview {
    flex-direction: column;
    gap: 8px;
  }
  .file-card {
    font-size: 14px;
    padding: 10px 12px;
  }
  .floating-contact-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .email-btn {
    bottom: 70px;
  }
  .whatsapp-btn {
    bottom: 15px;
  }
}
/* End of Get Quote Page Styles */
