/* Global Styles */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.container-fluid {
  width: 100%;
  padding: 0;
}

.container,
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

body {
  margin: 0;
  padding: 5px;
}

@media (max-width: 767.98px) {

  html,
  body {
    overflow-x: hidden;
  }
}


/* Navigation Styles */
/* Top #ff0000 bar */
.top-bar {
  background-color: #ff0000;
  color: white;
  font-size: 13px;
}

.top-bar .social-icon i {
  color: white;
  /* Force icons to white */
}

.top-bar a.social-icon:hover i {
  color: #dddddd;
  /* Optional: hover effect for icons */
}



/* Main navbar */

/* Base styles for larger screens */
.navbar {
  background-color: #fff8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  /* Padding on larger screens */
  border-bottom: 1px solid #ddd;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.navbar-brand img {
  max-width: 150px;
  height: auto;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-links a.active {
  color: #ff0000;
}

.get-in-touch {
  border: 1px solid #ff0000;
  color: #ff0000;
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #ff0000;
}

/* Remove conflicting spacing and center navbar content on mobile */
@media (max-width: 991px) {
  header .navbar-nav {
    gap: 1rem;
  }

  header .navbar-collapse {
    text-align: center;
  }

  /* Remove the big 50px padding for smaller screens */
  .navbar {
    padding: 15px 15px;
  }
}


/* Hero Section */
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px 16px;
  background: #FFF5E6;
  flex-wrap: wrap;
  border-radius: 15px;
  box-sizing: border-box;
}

.hero-content {
  flex: 1;
  min-width: 250px;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.3;
  color: #111;
}

.hero-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.learn-more {
  display: inline-block;
  background-color: #ffd200;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  cursor: pointer;
}

.learn-more:hover {
  background-color: #ffbb00;
}

.hero-image {
  flex: 1;
  min-width: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 10px;
  object-fit: contain;
}

/* Responsive for tablets and below */
@media screen and (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    padding: 20px 12px;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

/* Additional tweak for smaller mobile screens */
@media screen and (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .learn-more {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .learn-more {
    padding: 8px 16px;
  }
}

/* Collapse behavior */
.collapse {
  display: none;
}

.collapse.show {
  display: inline;
}



/* About Section */
.about-section {
  padding: 60px 0;
  background: #fffaf3;
  margin-bottom: 10px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.text-block {
  flex: 1;
  min-width: 280px;
  box-sizing: border-box;
}

.about-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.4;
}

.about-title span {
  color: #ff0000;
}

.text-block p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more-btn {
  background: #ff0000;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #cc0000;
}

.read-more-btn span {
  margin-left: 10px;
}

.services-grid {
  flex: 1;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  font-size: 20px;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Tablet and below */
@media screen and (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 20px 12px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 13px;
  }

  .text-block p {
    font-size: 0.95rem;
  }

  .read-more-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

/* Mobile */
/* Mobile */
@media screen and (max-width: 600px) {
  .about-title {
    font-size: 1.4rem;
    text-align: center;
  }

  .about-subtitle {
    font-size: 9px;
    text-align: center;
  }

  .text-block p {
    font-size: 0.85rem;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }


  .read-more-btn {
    font-size: 13px;
    padding: 8px 16px;
    display: block;
    margin: 10px auto;
    max-width: 100%;

  }

  .service-card h4 {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;

  }

  .service-card p {
    font-size: 0.85rem;
    text-align: center;
    max-width: auto;

  }
}



/* Services Grid */
.services-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 20px;
  color: #333;
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 100%;
  }
}



/* Experience Section */
.experience-section {
  padding: 60px 20px;
  background: #fffaf3;
  margin-bottom: 40px;
}

.experience-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  /* constrains width */
  width: 100%;
  margin: 0 auto;
  /* centers it */
  padding: 0 20px;
  gap: 50px;
  box-sizing: border-box;
}

.left-section,
.right-section {
  flex: 1 1 48%;
  box-sizing: border-box;
}


.feature-box {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box.yellow {
  background: #fffbea;
}

.feature-box .icon {
  font-size: 1.8rem;
  color: #2a5bd7;
  flex-shrink: 0;
}

.right-section {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 10px;
}

.right-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.right-section input,
.right-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.right-section button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.right-section button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .experience-container {
    flex-direction: column;
    gap: 30px;
  }

  .experience-section {
    max-width: 100%;
    margin: 0 auto;
    /* centers it */
  }

  .left-section,
  .right-section {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .right-section {
    margin: 0;
    max-width: 100%;
  }

  .feature-box {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .experience-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .experience-section {
    max-width: 100%;
    margin: 0 auto;
    /* centers it */
    /* padding: 20px 0; */
  }

  .left-section,
  .right-section {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .right-section {
    margin: 0;
    max-width: 100%;
    /* padding: 10px 0; */
  }

  .feature-box {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .right-section form {
    max-width: 100%;
  }

  .right-section input,
  .right-section textarea,
  .right-section button {
    max-width: 100%;
  }
}

.left-section {
  flex: 1.5;
}

.right-section {
  flex: 1;
  background: #111;
  color: white;
  padding: 30px;
  border-radius: 8px;
  box-sizing: border-box;
}

h2 {
  font-size: 36px;
  margin: 0;
}

.highlight {
  color: #ff0000;
}

.description {
  margin: 10px 0 30px;
  max-width: 400px;
}

h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.feature-box {
  display: flex;
  background: #fff6d5;
  border-left: 6px solid orange;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  align-items: flex-start;
}

.feature-box .icon {
  font-size: 24px;
  margin-right: 15px;
  color: #ff0000;
}

.feature-box.yellow {
  background: #fff4c2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form select,
form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

form textarea {
  resize: vertical;
  height: 80px;
}

button {
  background: #ffd200;
  color: black;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #ffbe00;
}

.form-subtitle {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}



/* Services */

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.header h2 {
  font-size: 32px;
  margin: 0;
}

.header h2 span {
  color: #ff0000;
}

.header p {
  max-width: 500px;
  font-size: 14px;
  color: #555;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 0;
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  position: relative;
  min-height: 140px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card-body p {
  font-size: 14px;
  color: #555;
}

.arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: #f3c420;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial after the service page */
.services-section {
  position: relative;
  z-index: 10;
  background-color: #fff;
  /* or your section's background */
  padding-bottom: 100px;
  /* Create space for overlap */
}


.testimonial-section {
  position: relative;
  z-index: 10;
  margin-top: -20px;
  padding: 100px 30px 60px;
  background-color: #007bdb;
  color: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 60px, 100% 100%, 0% 100%);
}

.testimonial-container {
  max-width: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  /* #ff0000uce space between image and text */
}

.testimonial-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.testimonial-text .quote-mark {
  font-size: 40px;
  color: #5eb9ff;
  display: block;
  margin-bottom: 10px;
}

.testimonial-text h2 {
  font-size: 24px;
  margin: 0 0 16px;
}

.testimonial-text p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.author-info strong {
  font-size: 16px;
}

.author-info .role {
  color: #f3c420;
  font-size: 12px;
  text-transform: uppercase;
}

/* blog section */


.blog-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.blog-header {
  flex: 1;
  min-width: 250px;
}

.blog-header h2 {
  font-size: 32px;
  margin: 10px 0;
}

.blog-header h2 span {
  color: #ff0000;
}

.blog-header p {
  margin: 15px 0;
  line-height: 1.5;
  color: #666;
}

.view-all {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.blog-posts {
  flex: 2;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-card {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  width: calc(50% - 10px);
  /* Two cards per row with spacing */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 15px;
}

.blog-content h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.blog-content small {
  color: #999;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
}

/* Responsive: stack cards on small screens */
@media (max-width: 768px) {
  .blog-card {
    width: 100%;
  }

  .blog-section {
    flex-direction: column;
  }

  .blog-posts {
    flex-direction: column;
  }
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: calc(50% - 10px);
  /* Same as .blog-card */
}

.blog-card-link:hover .blog-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}


/* footer and newsletter */

.newsletter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 2rem;
  /*background: #f8f8f8;*/
  border-radius: 10px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.newsletter-text {
  flex: 1;
  min-width: 250px;
}

.newsletter-text h2 {
  font-size: 1.8rem;
  margin: 10px 0;
  color: #111;
}

.newsletter-text h2 span {
  color: #e74c3c;
}

.newsletter-form {
  flex: 1;
  min-width: 250px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 180px;
  box-sizing: border-box;
}

.newsletter-form button {
  background: #ff0000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  color: white;
}

.newsletter-form button:hover {
  background: #ffbb00;
}

/* Mobile adjustments - reduce button and input, center content more */
/* Existing styles omitted for brevity */

@media (max-width: 768px) {
  .newsletter-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering for flex children */
    text-align: center;
    gap: 8px;
    padding: 0.5rem;
  }

  .newsletter-text {
    width: 100%;
  }

  .newsletter-text h2 {
    font-size: 0.9rem;
  }

  .newsletter-text p {
    font-size: 0.7rem;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 6px;
    align-items: center;
  }

  .newsletter-form input[type="email"] {
    width: 90%;
    padding: 4px 6px;
    font-size: 0.7rem;
  }

  .newsletter-form button {
    width: 90%;
    padding: 4px 6px;
    font-size: 0.7rem;
  }
}


/* Footer Section */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-brand {
  max-width: 280px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 50%;
  /* adjust this value as needed */
  height: auto;
}


.logo span {
  font-size: 20px;
  font-weight: bold;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff0000;
}

.contact-list li i {
  margin-right: 10px;
  color: #ff0000;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons .icon i {
  color: white;
}

.social-icons a {
  background-color: #ff0000;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: #ff0000;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: #aaa;
  font-size: 14px;
  border-top: 1px solid #333;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {

  .newsletter-container,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

/* About Page */

.about-progem {
  background-image: url('/img/about2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vh;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  margin-bottom: 40px;
  /* Fallback padding for smaller screens */
  padding: 0 20px;
}

.about-progem-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 100px;
  padding-right: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-progem {
    height: 50vh;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .about-progem-content {
    padding: 0 20px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-progem {
    height: 40vh;
    clip-path: polygon(0 0, 100% 0, 100% 98%, 0% 100%);
  }

  .about-progem-content {
    padding: 0 10px;
  }
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon-box {
  transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
  transform: rotate(5deg) scale(1.1);
}

.modal-content {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: none;
  animation: fadeInModal 0.3s ease-in-out;
}

.modal-header {
  background: #f8f9fa;
  border-bottom: none;
  padding: 1.5rem 2rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.modal-body {
  padding: 1.5rem 2rem;
  font-size: 1rem;
  color: #555;
}

.btn-close {
  background: none;
  font-size: 1.2rem;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Contact Section */

.contact-progem {
  background-image: url('/img/contact-us.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-top: 50%;
  clip-path: none;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  margin: 5px 0;
  /* Reduced top and bottom margin even more */
  box-sizing: border-box;
}


.contact-progem-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 100px;
  padding-right: 100px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.4;
}

.contact-title span {
  color: #ff0000;
}

.contact-section {
  width: 100%;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.left-column {
  flex: 1;
  min-width: 320px;
  margin-left: 50px;
}

.right-column {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: flex-end;
}


.section-label {
  text-transform: uppercase;
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* .#ff0000 {
    color: #ff0000;
  } */

.logo {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.logo img {
  border-radius: 50%;
  margin-right: 10px;
}

.subtitle {
  color: #444;
  max-width: 500px;
}

.info-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.info-grid h3 {
  margin-bottom: 10px;
}

.info-grid p {
  margin: 6px 0;
  color: #222;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.icon {
  background-color: #ff0000;
  color: white;
  padding: 8px;
  border-radius: 50%;
  font-weight: bold;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.form-box {
  background-color: #1c1c1c;
  color: white;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
}

.form-box h2 {
  margin-top: 0;
}

.form-subtitle {
  font-size: 14px;
  margin-bottom: 20px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
  font-size: 14px;
}

textarea {
  height: 100px;
  resize: vertical;
}

.form-box button {
  width: 100%;
  background-color: #ffd740;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.map-container {
  margin-top: 30px;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  margin: 0;
}

.logo {
  gap: 4px;
}

@media (max-width: 767px) {

  .left-column,
  .right-column {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
    padding: 0px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 0  ;
    text-align: center;
  }

  .contact-content {
    display: block  ;
  }

  .left-column,
  .right-column {
    width: 100%  ;
    margin: 0 auto;
    text-align: center;
    padding: 0  ;
  }

  .left-column div,
  .right-column div {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {

  .container-fluid,
  .container {
    padding-left: 0  ;
    padding-right: 0  ;
  }

  .contact.py-5 {
    padding-top: 1rem  ;
    padding-bottom: 1rem  ;
  }
}

@media (max-width: 767px) {
  .row {
    margin-left: 0  ;
    margin-right: 0  ;
  }

  .row>[class*='col-'] {
    padding-left: 0;
    padding-right: 0;
  }
}



.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons .icon {
  font-size: 20px;
  color: #ff0000;
  transition: color 0.3s ease;
  text-decoration: none;
  /* Removes underline */

}

.social-icons .icon:hover {
  color: #000;
}

/* blog */



.blog-progem {
  background-image: url('/img/articles.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-top: 50%;
  clip-path: none;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  margin: 5px 0;
  /* Reduced top and bottom margin even more */
  box-sizing: border-box;
}


.blog-progem-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 100px;
  padding-right: 100px;
}


.blog-hero {
  background-image: url('/img/pr1.png');
  /* Use the actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  width: 100%;
  clip-path: path("M0 0 H100% V85% C100% 95% 80% 100% 0 100% Z");
  color: white;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.breadcrumb-container {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 1rem;
}

.blog-title-container {
  position: absolute;
  bottom: 40px;
  left: 60px;
}

.blog-title {
  font-size: 3rem;
  margin: 0;
  font-weight: 600;
}

/* Container padding */
.latest-posts {
  background: #f9f9f9;
  font-family: 'Montserrat', sans-serif;
}

/* Header */
.section-title {
  font-size: 2rem;
  margin: 0;
}

.section-title .light {
  color: #888;
  font-weight: 400;
}

.section-title .dark {
  color: #000;
  font-weight: 700;
}

.section-desc {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Featu#ff0000 Card */
.featu#ff0000-card img {
  object-fit: cover;
  height: 300px;
}

.featu#ff0000-card .card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.featu#ff0000-card .card-text {
  color: #555;
  font-size: 0.95rem;
}

/* Grid Cards */
.post-card img {
  object-fit: cover;
  height: 180px;
}

.post-card .card-body {
  padding: 15px;
}

.post-card .card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.post-card .card-text {
  color: #555;
  font-size: 0.9rem;
}

/* READ MORE overlay */
.read-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
}

.content p {
  margin-bottom: 1.2rem;
}

.content h2,
.content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.btn-outline-primary {
  border-radius: 25px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: white;
}

.btn.btn-outline-dark:hover {
  color: white;
  border-color: #ff0000;
  background-color: #ff0000;
}


.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  border-left: 5px solid #007bff;
  padding-left: 12px;
  margin-bottom: 1rem;
}

.case-box {
  background-color: #f8f9fa;
  transition: box-shadow 0.3s ease;
}

.case-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.mission-vision {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
}


.container.about-content {
  flex: 1 1 45%;
  box-sizing: border-box;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  text-decoration: none;
  color: white;
}

/* Case Study */
.case-progem {
  background-image: url('/img/case-study.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-top: 50%;
  clip-path: none;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  margin: 5px 0;
  box-sizing: border-box;
}

.read-more-link {
  color: white;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.95em;
}

.read-more-link:hover {
  text-decoration: none;
}

/* Modal Styles */
.modals {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-contents {
  background-color: #007bff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  color: white;
}

.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

.testimonial-container {
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.testimonial-text {
  /* background: #f9f9f9; */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .testimonial-text {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 90%;
    margin: auto;
  }

  .modal-content {
    padding: 1px;
  }

  .modal-title {
    font-size: 0.6rem;
  }

  .modal-body form input[type="text"],
  .modal-body form input[type="email"],
  .modal-body form textarea {
    font-size: 0.6rem;
    padding: 2px 4px;
    width: 100%;
    margin-bottom: 2px;
  }

  .modal-body form textarea {
    min-height: 40px;
  }

  .modal-body form button {
    font-size: 0.6rem;
    padding: 2px 4px;
    width: 100%;
  }
}

/* Hide WhatsApp icon on mobile */
@media (max-width: 767px) {
  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 0;
    padding: 0;
  }
}