     :root {
          --primary: #10471dd8;
          --primary-dark: #0a3416;
          --primary-light: #2d5f3a;
          --secondary: #a5b4a5;
          --secondary-light: #c8d4c8;
          --dark-text: #1a1a1a;
          --light-text: #6b7280;
          --white: #ffffff;
          --accent-green: #5e695e;
          --success-green: #22c55e;
          --bg-light: #f8fafc;
          --bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }

        /* Base Styles */
        * {
          box-sizing: border-box;
        }

        body {
          background: var(--bg-gradient);
          font-family: 'Inter', sans-serif;
          line-height: 1.7;
          color: var(--dark-text);
          font-weight: 400;
          overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
          font-family: 'Playfair Display', serif;
          font-weight: 600;
          line-height: 1.3;
        }

        /* Navigation */
        #mainNav {
          background-color: rgba(255, 255, 255, 0.95) !important;
          backdrop-filter: blur(20px);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
          transition: all 0.3s ease;
          border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        #mainNav .navbar-brand {
          color: var(--dark-text) !important;
          font-weight: 700;
          font-size: 1.25rem;
        }

        #mainNav .navbar-brand:hover {
          color: var(--primary) !important;
        }

        #mainNav .navbar-nav .nav-item .nav-link {
          color: var(--dark-text) !important;
          font-weight: 500;
          font-size: 0.95rem;
          padding: 0.75rem 0;
          margin: 0 1rem;
          transition: all 0.3s ease;
          position: relative;
        }

        #mainNav .navbar-nav .nav-item .nav-link:hover,
        #mainNav .navbar-nav .nav-item .nav-link.active {
          color: var(--primary) !important;
        }

        #mainNav .navbar-nav .nav-item .nav-link.active::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 30px;
          height: 2px;
          background: var(--primary);
          border-radius: 2px;
        }

        /* Masthead with Background Image */
        .masthead {
          min-height: 100vh;
          background: linear-gradient(to bottom, rgba(92, 77, 66, 0.8) 0%, rgba(92, 77, 66, 0.5) 100%), url("../assets/img/masthead.jpg");
          background-position: center;
          background-repeat: no-repeat;
          background-attachment: scroll;
          background-size: cover;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          overflow: hidden;
        }

        .masthead .container {
          position: relative;
          z-index: 2;
        }

        .masthead h1 {
          font-size: 4.5rem;
          font-weight: 700;
          color: var(--white);
          margin-bottom: 2rem;
          line-height: 1.2;
          font-family: 'Playfair Display', serif;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .masthead .divider {
          width: 100px;
          height: 4px;
          background: var(--white);
          margin: 2rem auto;
          border-radius: 2px;
          opacity: 0.9;
          box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .masthead p {
          font-size: 1.3rem;
          color: rgba(255,255,255,0.95);
          margin-bottom: 3rem;
          line-height: 1.6;
          font-family: 'Inter', sans-serif;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
          text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Buttons */
        .btn-xl {
          padding: 1.2rem 3rem;
          font-size: 1.1rem;
          font-weight: 600;
          border-radius: 50px;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          text-decoration: none;
          display: inline-block;
          border: 2px solid;
        }

        .btn-light.btn-xl {
          background: var(--white);
          color: var(--primary);
          border-color: var(--white);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .btn-light.btn-xl:hover {
          background: transparent;
          color: var(--white);
          transform: translateY(-5px) scale(1.05);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .btn-primary.btn-xl {
          background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
          color: var(--white);
          border-color: transparent;
          box-shadow: 0 8px 20px rgba(16, 71, 29, 0.3);
        }

        .btn-primary.btn-xl:hover {
          transform: translateY(-3px) scale(1.05);
          box-shadow: 0 12px 30px rgba(16, 71, 29, 0.4);
          color: var(--white);
        }

        /* Page Sections */
        .page-section {
          padding: 6rem 0;
        }

        .bg-primary {
          background: var(--primary) !important;
        }

        .bg-warm {
          background: var(--bg-gradient);
        }
        /* Custom About Section Styling */
        .bg-about {
            background: var(--bg-gradient) !important;
        }
   

        .bg-about .section-header h1 {
            color: var(--primary) !important;
        }

   

        .bg-about .about-card {
            background: var(--primary);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(16, 71, 29, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .bg-about .about-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: var(--primary-dark);
        }

        .bg-about .about-card h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .bg-about .about-card p {
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .section-header {
          text-align: center;
          margin-bottom: 4rem;
        }

        .section-header h1,
        .section-header h2 {
          font-size: 3.5rem;
          font-weight: 700;
          margin-bottom: 1.5rem;
          position: relative;
        }

        .section-header h2 {
          color: var(--primary);
        }


        .section-header p {
          font-size: 1.3rem;
          color: var(--light-text);
          max-width: 700px;
          margin: 0 auto;
          font-family: 'Inter', sans-serif;
        }

        /* About Section Cards */
        .about-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 3rem;
          margin-top: 3rem;
        }

        .about-card {
          background: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(15px);
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: 24px;
          padding: 2.5rem;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .about-card:hover {
          transform: translateY(-10px) scale(1.02);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          background: rgba(255, 255, 255, 0.15);
        }

        .about-card h2 {
          color: var(--white);
          margin-bottom: 1.5rem;
          font-size: 1.8rem;
        }

        .about-card p {
          color: rgba(255,255,255,0.9);
          line-height: 1.7;
          font-size: 1.05rem;
        }

        /* Founder Section */
        .founder-section {
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(20px);
          border-radius: 32px;
          padding: 4rem;
          margin: 4rem 0;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
          transition: all 0.4s ease;
        }

        .founder-section:hover {
          transform: translateY(-5px);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .founder-image {
          border-radius: 50%;
          max-width: 280px;
          box-shadow: 0 20px 40px rgba(0,0,0,0.15);
          border: 6px solid rgba(255,255,255,0.9);
          transition: all 0.3s ease;
        }

        .founder-image:hover {
          transform: scale(1.05);
          box-shadow: 0 25px 50px rgba(0,0,0,0.25);
        }

        /* Services Section */
        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 3rem;
          margin-top: 3rem;
        }

        .service-card {
          background: rgba(255, 255, 255, 0.9);
          backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.2);
          border-radius: 28px;
          padding: 0;
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          overflow: hidden;
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .service-card:hover {
          transform: translateY(-15px) scale(1.02);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
          border-color: rgba(16, 71, 29, 0.3);
        }

        .service-card .card-body {
          padding: 3rem;
        }

        .feature-icon {
          width: 100px;
          height: 100px;
          border-radius: 50%;
          background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 2rem;
          box-shadow: 0 15px 30px rgba(16, 71, 29, 0.3);
          transition: all 0.3s ease;
        }

        .service-card:hover .feature-icon {
          transform: scale(1.1) rotate(5deg);
          box-shadow: 0 20px 40px rgba(16, 71, 29, 0.4);
        }

        .service-card h3 {
          color: var(--primary);
          font-weight: 600;
          margin-bottom: 1.5rem;
          font-size: 1.5rem;
        }

        .service-card .divider {
          width: 80px;
          height: 3px;
          background: linear-gradient(90deg, var(--primary), var(--accent-green));
          margin: 1.5rem auto;
          border-radius: 2px;
        }

        .service-card ul {
          text-align: left;
          padding-left: 0;
        }

        .service-card li {
          color: var(--dark-text);
          font-size: 0.95rem;
          margin-bottom: 0.8rem;
          display: flex;
          align-items: center;
        }

        .service-card li i {
          color: var(--success-green);
          margin-right: 0.8rem;
          font-size: 1rem;
        }

        /* Contact Section */
        .contact-card {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          border: 1px solid rgba(255, 255, 255, 0.3);
          border-radius: 32px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          transition: all 0.4s ease;
        }

        .contact-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .form-floating .form-control {
          border: 2px solid rgba(16, 71, 29, 0.2);
          border-radius: 12px;
          transition: all 0.3s ease;
        }

        .form-floating .form-control:focus {
          border-color: var(--primary);
          box-shadow: 0 0 0 0.25rem rgba(16, 71, 29, 0.15);
        }

        /* Button Groups */
        .btn-group-section {
          display: flex;
          gap: 1rem;
          justify-content: center;
          flex-wrap: wrap;
          margin-top: 3rem;
        }

        /* Success Message */
        .alert-success {
          background: linear-gradient(135deg, var(--success-green) 0%, #16a34a 100%);
          border: none;
          border-radius: 12px;
          color: white;
          font-weight: 500;
        }

        /* Footer */
        footer {
          background: var(--primary);
          color: var(--white);
          padding: 5rem 0 3rem 0;
          position: relative;
        }

        footer h4 {
          color: var(--white);
          margin-bottom: 2rem;
          font-weight: 600;
          font-family: 'Playfair Display', serif;
          font-size: 1.4rem;
        }

        .footer-divider {
          width: 60px;
          height: 4px;
          background: var(--white);
          opacity: 0.8;
          margin-bottom: 2rem;
          border-radius: 2px;
        }

        .footer-text {
          color: rgba(255,255,255,0.95);
          line-height: 1.7;
          margin-bottom: 0.8rem;
          font-family: 'Inter', sans-serif;
        }

        .footer-link {
          color: rgba(255,255,255,0.95);
          text-decoration: none;
          transition: all 0.3s ease;
          font-family: 'Inter', sans-serif;
        }

        .footer-link:hover {
          color: var(--white);
          transform: translateX(5px);
        }

        .footer-logo {
          max-width: 280px;
          border-radius: 12px;
          box-shadow: 0 8px 24px rgba(0,0,0,0.3);
          border: 2px solid rgba(255,255,255,0.2);
          transition: all 0.3s ease;
        }

        .footer-logo:hover {
          transform: scale(1.05);
          box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          .masthead h1 {
            font-size: 3rem;
          }
          
          .section-header h1,
          .section-header h2 {
            font-size: 2.5rem;
          }
          
          .about-grid,
          .services-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
          }
          
          .founder-section {
            padding: 2.5rem;
          }
          
          .btn-group-section {
            flex-direction: column;
            align-items: center;
          }
          
          .service-card .card-body {
            padding: 2rem;
          }
          
          .about-card {
            padding: 2rem;
          }
        }

        @media (max-width: 576px) {
          .masthead h1 {
            font-size: 2.5rem;
          }
          
          .masthead p {
            font-size: 1.1rem;
          }
          
          .page-section {
            padding: 4rem 0;
          }
          
          .founder-section {
            padding: 2rem;
          }
        }

        /* Animations */
        @keyframes slideInUp {
          from {
            opacity: 0;
            transform: translateY(40px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @keyframes fadeInScale {
          from {
            opacity: 0;
            transform: scale(0.9);
          }
          to {
            opacity: 1;
            transform: scale(1);
          }
        }

        .slide-in {
          animation: slideInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .fade-in-scale {
          animation: fadeInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        /* Loading States for Scroll Animations */
        .animate-on-scroll {
          opacity: 0;
          transform: translateY(30px) scale(0.95);
          transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .animate-on-scroll.animate {
          opacity: 1;
          transform: translateY(0) scale(1);
        }

        /* Stagger delays for grid items */
        .about-card:nth-child(1) { transition-delay: 0.1s; }
        .about-card:nth-child(2) { transition-delay: 0.25s; }
        .about-card:nth-child(3) { transition-delay: 0.4s; }

        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.3s; }
        .service-card:nth-child(3) { transition-delay: 0.5s; }

        /* Utility Classes */
        .text-white-75 { color: rgba(255, 255, 255, 0.75) !important; }
        .text-muted { color: var(--light-text) !important; }
        .text-primary { color: var(--primary) !important; }
        .text-light { color: rgba(255, 255, 255, 0.9) !important; }
        .fw-bold { font-weight: 700 !important; }
        .mb-5 { margin-bottom: 3rem !important; }
        .mt-0 { margin-top: 0 !important; }
        .h-100 { height: 100% !important; }
        .list-unstyled { padding-left: 0; list-style: none; }
        .d-none { display: none !important; }
        .d-grid { display: grid !important; }



        /* Alerts for Form Submit */

        .alert-danger {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 500;
        }

        #loadingSpinner {
            display: none;
        }

        /* Form validation styles to match your theme */
        .form-control.is-valid {
            border-color: var(--success-green);
            box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.15);
        }

        .form-control.is-invalid {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
        }
