 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-color: #e6b325;
     --dark-color: #121212;
     --light-color: #ffffff;
     --text-dark: #333333;
     --text-light: #f5f5f5;
     --transition-speed: 0.3s;
     --salesforce-blue: #00A1E0;
 }

 body {
     font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     line-height: 1.6;
     scroll-behavior: smooth;
     background-color: #f8f9fa;
 }

 h1,
 h2,
 h3,
 h4 {
     font-weight: 300;
     letter-spacing: 1px;
     line-height: 1.2;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Header Styles */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 80px;
     padding: 15px 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     transition: all var(--transition-speed) ease;
     background-color: white;
 }

 .navbar .logo {
     font-size: 1.8rem;
     font-weight: 300;
     color: var(--light-color);
     text-decoration: none;
     letter-spacing: 2px;
     transition: color var(--transition-speed) ease;
 }

 .logo-img {
     height: 80px;
     width: auto;
     transition: all 0.3s ease;
     margin-top: 10px;
 }

 .nav-links {
     display: flex;
     list-style: none;
 }

 .nav-links li {
     margin-left: 40px;
 }

 .nav-links a {
     color: black;
     text-decoration: none;
     font-weight: 400;
     font-size: 1rem;
     letter-spacing: 1px;
     transition: color var(--transition-speed) ease;
     position: relative;
     padding: 5px 0;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background-color: var(--salesforce-blue);
     transition: width var(--transition-speed) ease;
 }

 .nav-links a:hover::after {
     width: 100%;
 }


 /* Hero Section */
.agentic-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.agentic-hero .hero-content {
    z-index: 1;
    padding: 20px;
}

.agentic-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.agentic-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}



 /* Expertise Section */
 .expertise-section {
     padding: 80px 0;
     background-color: white;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 20px;
     font-weight: 600;
     position: relative;
 }

 .section-title::after {
     content: '';
     display: block;
     width: 80px;
     height: 3px;
     background: var(--salesforce-blue);
     margin: 15px auto 0;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.2rem;
     color: #555;
     max-width: 800px;
     margin: 0 auto 60px;
     line-height: 1.6;
 }

 /* Solutions Grid */
 .solutions-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
     margin-top: 40px;
 }

 .solution-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     border: 1px solid #eee;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .solution-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 161, 224, 0.1);
 }

 .card-image {
     height: 200px;
     overflow: hidden;
     position: relative;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .solution-card:hover .card-image img {
     transform: scale(1.05);
 }

 .card-content {
     padding: 25px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .card-content h3 {
     font-size: 1.4rem;
     color: var(--text-dark);
     margin-bottom: 15px;
     font-weight: 600;
 }

 .card-content p {
     color: #555;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
 }

 .card-link {
     display: inline-block;
     color: var(--salesforce-blue);
     font-weight: bold;
     font-size: 0.95rem;
     text-decoration: none;
     padding-bottom: 2px;
     border-bottom: 2px solid transparent;
     transition: all 0.3s ease;
     align-self: flex-start;
 }

 .card-link:hover {
     border-color: var(--salesforce-blue);
     transform: translateX(5px);
 }

 /* Footer */
 .site-footer {
     background: rgba(18, 18, 18, 0.9);
     backdrop-filter: blur(10px);
     color: #f5f5f5;
     padding: 60px 10% 30px;
     font-size: 0.95rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-column h3 {
     margin-bottom: 15px;
     font-size: 1.2rem;
     color: #fff;
     border-bottom: 1px solid var(--salesforce-blue);
     display: inline-block;
     padding-bottom: 5px;
 }

 .footer-logo {
     width: 150px;
     margin-bottom: 20px;
 }

 .footer-column p,
 .footer-column li {
     color: #ccc;
     margin-bottom: 10px;
     line-height: 1.6;
 }

 .footer-column a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s ease, transform 0.3s ease;
 }

 .footer-column a:hover {
     color: var(--salesforce-blue);
     transform: translateX(4px);
 }

 .footer-column ul {
     list-style: none;
     padding: 0;
 }

 .footer-bottom {
     text-align: center;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     margin-top: 40px;
     color: #aaa;
     font-size: 0.85rem;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .page-hero h1 {
         font-size: 2.8rem;
     }

     .page-hero p {
         font-size: 1.3rem;
     }

     .solutions-grid {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .navbar {
         padding: 10px 5%;
         height: 70px;
     }

     .logo-img {
         height: 60px;
     }

     .nav-links {
         display: none;
     }

     .page-hero {
         padding: 120px 0 60px;
     }

     .page-hero h1 {
         font-size: 2.2rem;
     }

     .page-hero p {
         font-size: 1.1rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .solution-card {
         max-width: 400px;
         margin: 0 auto;
     }
 }

 @media (max-width: 576px) {
     .page-hero h1 {
         font-size: 1.8rem;
     }

     .solutions-grid {
         grid-template-columns: 1fr;
     }

     .card-image {
         height: 180px;
     }
 }



 /* ===== Trendy App List Styling ===== */

.expertise-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #fdfdfd, #f5f7fa);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 50px;
}

/* App list container */
.apps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each app block */
.app-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 25px 30px;
  text-align: left;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.app-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(0,161,224,0.15), rgba(230,179,37,0.15));
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.app-item:hover::before {
  opacity: 1;
}

.app-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* App name with inline logo */
.app-item h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.app-inline-logo {
  height: 60px;
  width: 60px;
  object-fit: contain; /* or cover */
  border-radius: 6px;  /* optional */
}

/* Underline hover effect */
.app-item h3::after {
  content: "";
  display: none !important;
  width: 0;
  height: 3px;
  background: #00A1E0;
  transition: width 0.3s;
  margin-top: 4px;
}

.app-item:hover h3::after {
  width: 40%;
}

/* App description */
.app-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Links container */
.app-links {
  display: flex;
  gap: 12px;
  align-items: center;  /* keeps icon vertically aligned with buttons */
  flex-wrap: nowrap;    /* ⬅ keeps everything in one line */
  position: relative;
  z-index: 1;
}

/* Buttons styled like pills */
.app-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Read More pill */
.app-links .read-more {
  background: #00A1E0;
  color: #fff;
}

.app-links .read-more:hover {
  background: #0086b8;
  box-shadow: 0 4px 12px rgba(0,161,224,0.4);
}


/* Not using this now */
/*

.app-links .appexchange-link {
  background: #fff3d6;
  color: #b07b00;
  border: 1px solid #e6b325;
}

.app-links .appexchange-link:hover {
  background: #e6b325;
  color: #fff;
  box-shadow: 0 4px 12px rgba(230,179,37,0.4);
}

*/

/* AppExchange pill */

.app-links .appexchange-link {
  background: #295B8D;
  color: #fff;
  border: 1px solid #1f456a;
}
.app-links .appexchange-link:hover {
  background: #1f456a;
  color: #fff;
  box-shadow: 0 4px 12px rgba(41,91,141,0.4);
}


/* YouTube button - small round icon */
.youtube-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color:#ff0000 ;
  font-size: 18px;
  margin-left: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.youtube-link:hover {
  background: #fff;
  transform: scale(1.1);
}
