 * {
     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;
     }
 }