*{
    margin: 0;
    padding: 0;
}

body{
   background: linear-gradient(90deg, #0073C6, #ff8a42dc);
  font-family: "Montserrat", sans-serif !important;
  padding-top: 90px;
}

.navbar-toggler{
  background-color:#ff8a42dc !important;
}

/* Replace your .navbar block with this */
.navbar {
  background-color: #0a2a43;                 /* solid navbar background */
  padding: 8px 15px;
  /* gradient bar at the bottom only */
  background-image: linear-gradient(90deg, #0073C6, #FF8C42);
  background-repeat: no-repeat;
  background-size: 100% 4px;                  /* width 100%, height = 4px (thickness) */
  background-position: left bottom;           /* anchored to the bottom */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  
}


.nav-item{
  padding-left: 40px !important;
  font-weight: 700;
  color: azure;
}

.logo {
  height: 50px;
  padding-left: 2.8rem;
  object-fit: contain;
  image-resolution: 100%;
}


.tagline {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  color: #0393DC !important; /* Bootstrap blue */
  font-size: .8rem !important; /* keep it slightly smaller than logo text */
  letter-spacing: 0.5px; /* adds elegance */

}


.nav-link {
  color: white !important;
}


.featurette-divider {
   margin: 15rem 0;
   border: 0;
   border-top: 1px solid #e85d2fd2;
   opacity: 1;
  }


/* higher specificity */
.navbar .navbar-nav .nav-link:hover,
.navbar .nav-link:hover {
  color: rgb(224, 118, 36) !important;
}

.carousel-item {
  margin-top: 20px !important;
  height: 90vh; /* Match hero-img */
  position: relative;
}

.carousel-item img.hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 0; /* image at the back */
  filter: brightness(70%);
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2), /* top transparent */
    rgba(0, 0, 0, 0.7)  /* bottom darker */
  );
  z-index: 0; /* above image */
  border-radius: 20px;
  pointer-events: none; /* ⬅️ prevents blocking clicks */
}

.carousel-caption h2,
.carousel-caption p {
  color: #fff !important;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9) !important;

}

.carousel-caption p {
  font-size: 1.1rem;
}



.partner-carousel {
  background:#33333393;
  border-radius: 24px;
  padding: 40px 0;      /* reduced padding to make room for heading */
  overflow: hidden;
  width: 85%;
  margin: 80px auto;
  border: 1px solid #333;
  text-align: center;   /* centers heading */
}

.partner-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffffd0;
  margin-bottom: 30px;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: transparent !important;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 120s linear infinite;
  align-items: center;
  gap: 70px;
  background-color: transparent !important;
}


.carousel-track img {
  background-color: transparent !important;
  max-height: 90px;
  width: auto;
  object-fit: contain;
  margin: 0 15px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease;
  
}

.carousel-track img:hover {
  opacity: 1;
  transform: scale(1.05); /* subtle zoom on hover */
}


/* Infinite scroll effect */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.marketing-img {
  margin-top: 30px !important;
  background-color: white;
  width: 200px;
  height: 200px;
  border-radius: 50%;   /* makes the image circular */
  object-fit: cover;    /* ensures image fills the circle */
  display: block;
  margin: 0 auto 20px;  /* centers image and adds spacing below */
}

.marketing-text{
font-size: 1.2rem;
  font-weight: 300;
  color: #ffffffd0;
  margin-bottom: 30px;
  
}

.marketing-heading {
font-size: 1.8rem;
  font-weight: 700;
  color: #fffffff3;
  margin-bottom: 5px;
  
}

.copyright{
  color: white !important;
}

/* Contact page */

/* contact page css */

/* Contact Section Wrapper */
.contact-section {
  margin-top: 10px; /* space below navbar */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Left Column (Orange background) */
.contact-info {
  background: #f08746;
  color: #fff;
  padding: 60px 40px;
  height: 100%;
}

/* Right Column (White background) */
.get-back {
  display: flex;
  justify-content: center;
  background: #ffffff;
  padding: 60px;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
}

/* Social links */
.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #000;
}



/* Gradient Submit Button */
.contact-button-gradient {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  margin: 6px 10px 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #8746F0;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}
.contact-button-gradient:hover {
    background-color: #46F087;
  outline: none;
  text-decoration: none;
}
/* contact-button-mail */
.contact-button-mail {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  margin: 6px 10px 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #8746F0;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}
.contact-button-mail:hover {
    background-color: #46F087;
  outline: none;
  text-decoration: none;
}



/* Tooltip Button */
.contact-button {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  margin: 6px 10px 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #8746F0;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.contact-button:hover,
.contact-button:focus {
  background-color: #46F087;
  outline: none;
  text-decoration: none;
}

/* Shared tooltip behavior */
.contact-button::before {
  content: attr(data-tooltip);
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.contact-button:hover::before,
.contact-button:focus::before
{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Responsive: stack vertically */
@media (max-width: 768px) {
  .contact-info,
  .get-back {
    padding: 30px 20px;
  }

  .contact-info {
    border-radius: 15px 15px 0 0;
  }

  .get-back {
    border-radius: 0 0 15px 15px;
  }
}

/* Typography tweaks */
.branch {
  font-weight: 700;
}

.branch-add {
  font-weight: 300;
  font-size: large;
}

/* Icons */
.address-icon,
.phone,
.email-icon {
  height: 1.5rem;
  width: 1.5rem;
}


/* socials */
/* General social icon styles */
.social-links a {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* Brand-specific colors */
.social-links a.facebook { color: #1877f2; }   /* Facebook Blue */
.social-links a.twitter { color: #1da1f2; }    /* Twitter Blue */
.social-links a.linkedin { color: #0077b5; }   /* LinkedIn Blue */
.social-links a.instagram { color: #e4405f; /* Instagram Pink/Red */
}


/* map */


/* About Page */
/* 
.lead {
  color: white;
  
}

.featurette-heading{
 margin-top: 50px;
  justify-content: start;
  align-items: center;
  color: white;
  text-align: justify !important;
}

.who-we{
  height: 400px;
  width: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 50px;
}
*/
/* General Section Styling */
.aboutus {
  background-color: #0d1b2a; /* Dark navy background */
  padding: 60px 30px;
  border-radius: 12px;
  margin-top: 40px;
}

/* Headings (H2) inside featurettes */
.featurette-heading {
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff; /* White text */
  text-align: left; /* Headings should stay left-aligned */
  margin-left: 1rem;
}

/* Paragraphs and List Items */
.lead {
  color: #e0e0e0; /* Light grey for better contrast */
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0rem 1rem;
}

/* Lists (Mission & Why Choose) */
.lead li {
  margin-bottom: 12px;
  list-style-type: disc;
  margin-left: 20px;
}

/* Image Styling */
.about-img {
  height: 400px;
  width: 100%;
  max-width: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 40px;
  object-fit: cover;
  margin: 0rem 1rem;

}

.vision-img{display: flex;
  justify-content: center;
  align-items: center;
  height: 630px;
  width: 100%;
  max-width: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 40px;
  margin: 0rem 1rem;

}

.why-transmatic-img{
  height: 480px;
  width: 100%;
  max-width: 500px;
  border: none;
  border-radius: 20px;
  margin-top: 40px;
  margin: 0rem 1rem;
}

/* Section Divider */
.featurette-divider {
 margin: 3rem 0;
  border: 0; /* remove default border */
  height: 2px; /* thickness of the divider */
  background: linear-gradient(135deg, #0073C6, #FF8C42);
  opacity: 1;
  border-radius: 2px;
}


/* Service page */

/* Overview section */
.overview {
  background:linear-gradient(135deg, #0073C6, #FF8C42) !important;
  border-radius: .5rem;
  color: #fff;
  text-align: center;

}

/* Service rows → equal height */
/* Flex container for the row - already stretch align-items */
/* Maintain flex container with equal height */
.row.align-items-md-stretch {
  display: flex;
    margin-bottom: 2rem;
}

/* Text box container - keep height 100% */
.box-color {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background:linear-gradient(135deg, #0073C6, #FF8C42) !important;
  color: #fff;
  border-radius: 0.5rem;
  height: 100%;
  box-sizing: border-box;
}

.web-dev{
  padding: 2.2732rem !important;
}
/* Image container - limit height no more than sibling text box */
.service-img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem !important;
  overflow: hidden;
}

/* Images - restrict max-height and width to keep proportional */
.service-img img {
  height: 440px !important;
  width: 650px !important;
 border-radius: .5rem;
}



/* Paragraphs inside overview box */
.box-color p {
  text-align: justify;
}


/* industris */

 /* Container wrapper for hero + grid */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;  /* match Bootstrap container spacing */
}

/* Hero section */
.hero {
  background:linear-gradient(135deg, #0073C6, #FF8C42) !important;
  margin-top: 50px;
  color: white !important;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
}
.hero p {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}

/* Industry grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.industry-card {
  background:linear-gradient(135deg, #0073C6, #FF8C42) !important;
  color: white;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  padding: 24px;
  transition: all 0.3s ease; /* smoother animation */
  cursor: pointer; /* shows it's interactive */
}

.industry-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); /* stronger shadow */
  transform: translateY(-6px); /* slight lift effect */
}
.industry-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 60px;   /* reserve space for up to 2 lines */
  display: flex;
  align-items: center; /* vertically center single-line titles */
}

.industry-description {
  font-size: 1rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 15px;   /* good space before benefits list */
}


/* Benefits list */
.benefits {
  margin-top: 15px;
}
.benefits li {
  margin-bottom: 8px;
}

/* CTA */
.cta {
  background:linear-gradient(135deg, #0073C6, #FF8C42) !important;
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

.cta h2 {
  
  margin-bottom: 20px;
}

.cta a {
  background: white;
  color: #f08746;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease; /* smooth hover animation */
}

.cta a:hover {
  background: #cc952858; /* darker blue background */
  color: white;        /* text turns white */
  transform: translateY(-3px); /* slight lift */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* subtle shadow */
}



/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
}

/* support page */
/* ============================
   Support Modal Styles
   ============================ */

/* Overlay Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: linear-gradient(90deg, #0073C6, #FF8C42);
}

/* Modal Content Box */
.modal-content {
  background: linear-gradient(135deg, #0073C6, #FF8C42);
  margin: 80px auto 5%; /* ⬅️ 100px from top (navbar + gap), auto sides, 5% bottom */
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  color: white;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  animation: slideDown 0.4s ease;
}


/* Slide Down Animation */
@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #FF8C42;
  transition: color 0.2s ease;
}
.close:hover {
  color: #fff;
}

/* Form Elements */
.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  margin-bottom: 12px;
  font-size: 14px;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  border: 2px solid #0073C6;
  background: #f9f9f9;
  color: #000;
}

/* Submit Button */
.modal-content button {
  background: linear-gradient(90deg, #0073C6, #FF8C42);
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: 0.3s ease;
}
.modal-content button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Validation Popup */
.validation-popup {
  position: fixed;
  top: 100px; /* below navbar */
  left: 50%;
  transform: translateX(-50%);
  background: #d9534f; /* red alert color */
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2000;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.validation-popup .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.navbar .support-btn {
  background: linear-gradient(90deg, #0073C6, #FF8C42);
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  color: white !important;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.navbar .support-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  text-decoration: none;
  color: #fff !important;
}


@media (max-width: 576px) {
  
  .logo {
    height: 30px !important;
    object-fit: contain;
   margin-left: .10rem !important;          /* center logo itself */
  }

  .tagline {
    font-size: .6rem !important;
    margin-top: 2px;          /* space below logo */
    margin-left: 0 !important; /* reset your earlier margin */
    text-align: center;       /* center tagline text */
    width: 100%;
  }
}


.modal {
  z-index: 2000 !important;
}

/* Optional polish: prevent background scroll when modal is open */
body.modal-open {
  overflow: hidden;
}
