 /* header styling */

 :root {
     --iffco-yellow: #FFEB00;
     --iffco-green: #218838;
     /* Slightly adjusted to match your image */
     --text-dark: #333;
 }

 /* Top Yellow Bar */
 .top-bar {
     background-color: var(--iffco-yellow);
     padding: 8px 0;
     font-size: 14px;
     font-weight: 500;
 }

 .top-bar a {
     color: var(--text-dark);
     text-decoration: none;
     padding: 0 15px;
     border-right: 1px solid #000;
 }

 .top-bar a:last-child {
     border-right: none;
 }

 /* Logo and Search */
 .main-header {
     padding: 15px 0;
     background-color: #fff;
 }

 .logo-box img {
     max-height: 70px;
     width: 200px;
 }

 .logo-subtitle {
     font-size: 11px;
     margin-top: 5px;
     display: block;
     line-height: 1.2;
     color: #444;
 }

 .search-container {
     background-color: #f4f4f4;
     border-radius: 4px;
     display: flex;
     align-items: center;
     padding: 8px 20px;
     width: 100%;
     max-width: 500px;
 }

 .search-container input {
     border: none;
     background: transparent;
     width: 100%;
     margin-left: 10px;
     outline: none;
 }

 /* Menu Link */
 .menu-btn {
     color: var(--iffco-green);
     font-weight: bold;
     cursor: pointer;
     text-decoration: none;
 }

 .menu-btn:hover {
     color: #1e7e34;
 }

 /* Sidebar / Offcanvas Custom Styles */
 .offcanvas {
     width: 300px !important;
     border: none !important;
 }

 .offcanvas-body {
     padding: 0;
 }

 .nav-sidebar {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .nav-sidebar li a {
     display: block;
     padding: 12px 25px;
     color: #333;
     text-decoration: none;
     font-size: 18px;
     transition: 0.2s;
 }

 /* The "Service" Active State from your image */
 .nav-sidebar li.active-green a {
     background-color: var(--iffco-green);
     color: var(--iffco-yellow);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 /* Small chevron icon for the active item */
 .chevron-down::after {
     content: '▼';
     font-size: 10px;
 }


 /* footer styling */

 .iffco-footer {
     /* Replace 'your-image-url.jpg' with the actual path to your image */
     background: linear-gradient(rgba(27, 138, 53, 0),
             rgba(27, 138, 53, 0)),
         url('images/footer-image.png') no-repeat center/cover;

     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;

     color: #ffffff;
     padding: 60px 20px;
     /* Increased padding for a better look with the image */
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     position: relative;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 20px;
 }

 .footer-col {
     flex: 1;
     min-width: 200px;
 }

 /* Branding Column */
 .logo-box {
     background: white;
     color: #1b8a34;
     display: inline-block;
     padding: 5px 15px;
     border-radius: 20px;
     font-weight: bold;
     font-size: 24px;
     margin-bottom: 10px;
 }

 .brand-subtext {
     font-weight: bold;
     font-size: 0.9rem;
     line-height: 1.2;
     text-transform: uppercase;
 }

 /* Links List */
 .footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-col ul li {
     margin-bottom: 12px;
 }

 .footer-col ul li a {
     color: white;
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 500;
     text-transform: uppercase;
 }

 .footer-col ul li a:hover {
     text-decoration: underline;
 }

 /* Address Column */
 .address-col h3 {
     margin-top: 0;
     font-size: 1.2rem;
     margin-bottom: 15px;
 }

 .address-col p {
     font-size: 0.85rem;
     line-height: 1.6;
     margin-bottom: 8px;
 }

 /* Responsive adjustments for mobile */
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
     }
 }

 /* footer slider css */
 .manual-slider-wrapper {
     display: flex;
     align-items: center;
     background: #f9f9f9;
     /* padding: 20px; */
     position: relative;
 }

 .slider-container {
     width: 100%;
     overflow: hidden;
     /* Hides the logos outside the view */
     margin: 0 10px;
 }

 .logo-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     /* Smooth sliding effect */
 }

 .slide {
     min-width: 200px;
     /* Adjust based on how many you want visible */
     text-align: center;
     padding: 20px;
     border-right: 1px solid #eee;
 }

 .slide img {
     max-width: 120px;
     filter: grayscale(100%);
     margin-bottom: 10px;
 }

 .slide:hover {
     background-color: yellow;
 }

 .slide:hover img {
     filter: grayscale(0%);
     transform: scale(1.1);
     transition: transform 0.1s ease, filter 0.1s ease;
     background-color: yellow;
 }

 .slide p {
     font-size: 10px;
     color: #666;
     text-transform: uppercase;
 }

 /* Button Styling */
 .nav-btn {
     background: none;
     border: 1px solid #ccc;
     font-size: 24px;
     cursor: pointer;
     padding: 10px;
     color: #888;
 }

 .nav-btn:hover {
     color: #333;
     border-color: #333;
 }


 /* footer copyright */
 .site-footer {
     width: 100%;
     background-color: #ffffff;
     /* White background */
     border-top: 1px solid #e0e0e0;
     /* Very light grey line at the top */
     padding: 30px 0;
     /* Vertical spacing */
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     /* Clean sans-serif */
 }

 .footer-bottom {
     text-align: center;
     margin-bottom: 6px;
 }

 .footer-bottom p {
     margin: 0;
     color: #999;
     /* Muted grey color for the copyright text */
     font-size: 14px;
     letter-spacing: 0.5px;
     /* Adds that "pro" airy feel */
 }


 /* slider styles */

 /* Section Container Styling */
 .accordion-wrapper {
     padding: 1% 0;
     /* Space between header and footer */
     background-color: #ffffff;
     display: flex;
     justify-content: center;
     overflow: hidden;
     /* Contains the internal hover effects */
 }

 .accordion-container {
     display: flex;
     width: 100%;
     max-width: 90vw;
     height: 600px;
     /* Fixed height instead of vh to prevent footer overlap */
     gap: 10px;
 }

 /* Scoped Panel Styles */
 .accordion-wrapper .panel {
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     height: 100%;
     border-radius: 20px;
     color: #fff;
     cursor: pointer;
     flex: 1.5;
     position: relative;
     transition: flex 0.7s cubic-bezier(0.05, 0.61, 0.41, 0.95);
     overflow: hidden;
 }

 .accordion-wrapper .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
     transition: background 0.5s;
 }

 .accordion-wrapper .content {
     position: absolute;
     top: 80px;
     left: 30px;
     right: 30px;
     z-index: 10;
 }

 .accordion-wrapper h3 {
     font-size: 2rem;
     margin-bottom: 5px;
     text-transform: uppercase;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
     transition: transform 0.5s ease;
     white-space: nowrap;
 }

 .accordion-wrapper .btn {
     display: inline-block;
     margin-top: 15px;
     padding: 10px 20px;
     background-color: #22a257;
     border: none;
     color: white;
     border-radius: 5px;
     cursor: pointer;
     font-weight: bold;
 }

 /* Active State Styles */
 .accordion-wrapper .panel.active {
     flex: 2;
     /* Increased for better visual impact when expanded */
 }

 .accordion-wrapper .panel.active .overlay {
     background: rgba(0, 0, 0, 0.4);
 }

 .accordion-wrapper .panel p,
 .accordion-wrapper .panel .btn {
     opacity: 0;
     max-height: 0;
     transform: translateY(-20px);
     transition: all 0.5s ease;
     overflow: hidden;
     color: #e0e0e0;
 }

 .accordion-wrapper .panel.active p,
 .accordion-wrapper .panel.active .btn {
     opacity: 1;
     max-height: 300px;
     transform: translateY(0);
     margin-top: 15px;
 }

 .accordion-wrapper .panel.active h3 {
     transform: translateY(-10px);
 }

 /* Mobile responsive adjustments */
 @media (max-width: 768px) {
     .accordion-container {
         width: 100%;
         height: 800px;
         flex-direction: column;
         padding: 0 15px;
     }

     .accordion-wrapper .panel {
         flex: 1;
     }

     .accordion-wrapper .panel.active {
         flex: 5;
     }
 }

 /* items styles */

 :root {
     --brand-green: #6DBA3A;
     --border-color: #eeeeee70;
 }

 /* Section Wrapper */
 .services-grid-section {
     padding: 28px 20px;
     /* Provides space between header/footer */
     display: flex;
     justify-content: center;
     background-color: #ffffff;
     font-family: 'Segoe UI', Roboto, sans-serif;
 }

 /* The Container */
 .services-grid-section .flex-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     max-width: 1200px;
     width: 100%;
 }

 /* Individual Card */
 .services-grid-section .grid-item {
     flex: 0 1 16.66%;
     min-width: 180px;
     height: 220px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     border: 0.5px solid var(--border-color);
     text-align: center;
     padding: 20px;
     box-sizing: border-box;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     position: relative;
     background: white;
 }

 /* Hover Interactivity */
 .services-grid-section .grid-item:hover {
     z-index: 2;
     background-color: #fafafa;
     transform: translateY(-8px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
     border-color: var(--brand-green);
 }

 /* Image/Logo Styling */
 .services-grid-section .logo-img {
     width: 84px;
     height: 84px;
     object-fit: contain;
     margin-bottom: 20px;
     transition: transform 0.3s ease;
 }

 .services-grid-section .grid-item:hover .logo-img {
     transform: scale(1.1);
 }

 /* Text Styling */
 .services-grid-section .grid-item p {
     margin: 0;
     font-size: 14px;
     color: #555;
     font-weight: 500;
     line-height: 1.3;
 }

 /* Responsive Adjustments */
 @media (max-width: 1100px) {
     .services-grid-section .grid-item {
         flex: 0 1 33.33%;
     }
 }

 @media (max-width: 600px) {
     .services-grid-section .grid-item {
         flex: 0 1 50%;
     }
 }
 /* Specific override for 4 items per row on Mobile */
@media (max-width: 600px) {
    .services-grid-section {
        padding: 15px 5px; /* Reduce section padding for more room */
    }

    .services-grid-section .grid-item {
        /* Force 25% width and kill the min-width constraint */
        flex: 0 0 25% !important; 
        min-width: 0 !important; 
        
        height: 140px; /* Reduce height so they don't look like tall rectangles */
        padding: 10px 5px;
    }

    .services-grid-section .logo-img {
        width: 40px;  /* Smaller icons to fit the 4-column grid */
        height: 40px;
        margin-bottom: 10px;
    }

    .services-grid-section .grid-item p {
        font-size: 10px; /* Smaller text for long labels */
        padding: 0 2px;
    }
}

 /* static image slider */
 .hero-slider-section {
     width: 100%;
     height: 600px;
     background: #2c3e50 url('images/ship.png') no-repeat center/cover;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     padding: 0 10%;
     box-sizing: border-box;
     overflow: hidden;
 }

 .hero-slider-container {
     position: relative;
     width: 738px;
     background: rgba(255, 255, 255, 0.95);
     padding: 40px;
     border-radius: 12px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
 }

 /* Slider Engine */
 .hero-slider-viewport {
     overflow: hidden;
 }

 .hero-slider-wrapper {
     display: flex;
     transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .hero-slide {
     min-width: 100%;
 }

 /* Slide Content Formatting */
 .hero-slide-content {
     display: flex;
     align-items: center;
     gap: 30px;
 }

 .hero-slide-left,
 .hero-slide-right {
     width: 50%;
 }

 .hero-slide-left img {
     max-width: 198px;
     margin-bottom: 10px;
 }

 .hero-tagline {
     color: #6DBA3A;
     font-weight: bold;
     margin-bottom: 5px;
 }

 .hero-slide-right {
     border-left: 1px solid #ddd;
     padding-left: 20px;
 }

 .hero-know-more {
     display: inline-block;
     margin-top: 15px;
     padding: 8px 20px;
     border: 1px solid #000;
     border-radius: 25px;
     text-decoration: none;
     color: #000;
     transition: 0.3s;
 }

 .hero-know-more:hover {
     background: #000;
     color: #fff;
 }

 /* Navigation Buttons - FIXED POSITIONING */
 .hero-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     font-size: 1.5rem;
     background: rgba(255, 255, 255, 0.8);
     border: 1px solid #ddd;
     color: #333;
     cursor: pointer;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     z-index: 10;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero-prev {
     left: -55px;
 }

 .hero-next {
     right: -55px;
 }

 /* Pagination Dots */
 .hero-dots-container {
     text-align: center;
     margin-top: 15px;
 }

 .hero-dot {
     height: 10px;
     width: 10px;
     background: #bbb;
     display: inline-block;
     border-radius: 50%;
     margin: 0 5px;
     cursor: pointer;
 }

 .hero-slide-left h3 {
     font-size: 1.25rem;

 }

 .hero-dot.hero-active {
     background: #6DBA3A;
 }

 /* Mobile Responsiveness */
 @media(max-width:768px) {
     .hero-slider-section {
         justify-content: center;
         padding: 20px;
     }

     .hero-slider-container {
         width: 100%;
         padding: 14px;
     }

     .hero-slide-content {
         flex-direction: column;
         text-align: center;
     }

     .hero-slide-left,
     .hero-slide-right {
         width: 100%;
     }

     .hero-slide-right {
         border-left: none;
         border-top: 1px solid #ddd;
         padding-top: 15px;
         padding-left: 0;
     }

     .hero-prev {
         left: 10px;
     }

     .hero-next {
         right: 10px;
     }
 }

 /* sliding text & image slider */

 .nonprofit-section {
     --np-primary-green: #1d7a3d;
     padding: 60px 0;
     background: #f9f9f9;
     font-family: 'Arial', sans-serif;
 }

 .np-section-title {
     text-align: center;
     color: var(--np-primary-green);
     font-size: 2.5rem;
     margin-bottom: 40px;
 }

 .np-slider-container {
     position: relative;
     max-width: 1100px;
     margin: 0 auto;
     height: 500px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     background: #fff;
 }

 .np-slide {
     display: none;
     grid-template-columns: 1fr 1fr;
     height: 100%;
 }

 .np-slide.np-active {
     display: grid;
 }

 .np-slide-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .np-slide-text {
     background-color: var(--np-primary-green);
     color: white;
     display: flex;
     align-items: center;
     padding: 60px;
 }

 /* Scoped Animation */
 .np-text-content {
     animation: npSlideUp 0.8s ease-out forwards;
 }

 @keyframes npSlideUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .np-text-content h3 {
     font-size: 2rem;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .np-text-content p {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 .np-know-more {
     display: inline-block;
     padding: 10px 25px;
     border: 1px solid white;
     color: white;
     text-decoration: none;
     transition: 0.3s;
 }

 .np-know-more:hover {
     background: white;
     color: var(--np-primary-green);
 }

 /* Navigation */
 .np-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     color: white;
     font-size: 2rem;
     cursor: pointer;
     padding: 20px;
     z-index: 10;
 }

 .np-prev {
     left: 10px;
     color: #333;
 }

 .np-next {
     right: 10px;
 }

 .np-dots-container {
     position: absolute;
     bottom: 20px;
     right: 60px;
     z-index: 11;
 }

 .np-dot {
     height: 10px;
     width: 10px;
     margin: 0 5px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     display: inline-block;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .np-dot.np-active {
     background-color: white;
     width: 25px;
     border-radius: 5px;
 }

 @media (max-width: 768px) {
     .np-slide {
         grid-template-columns: 1fr;
     }

     .np-slide-image {
         height: 200px;
     }

     .np-slider-container {
         height: auto;
     }
 }

 /* form styles */
 /* Section Container */
 .dealership-section {
     width: 100%;
     padding: 50px 0;
     background-color: #ffffff;
     /* Change this to match your site background */
     font-family: Arial, sans-serif;
 }

 /* Header Styling */
 .dealership-header {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 35px;
 }

 .dealership-title {
     color: #008744;
     font-weight: bold;
     text-transform: uppercase;
     margin: 0 20px;
     font-size: clamp(16px, 4vw, 24px);
     /* Fluid typography */
     text-align: center;
 }

 .dealership-line {
     height: 3px;
     width: 60px;
     background-color: #f1d302;
 }

 /* Form Layout */
 .dealership-form {
     width: 100%;
     max-width: 1100px;
     /* Limits width on huge screens for readability */
     margin: 0 auto;
     padding: 0 15px;
     box-sizing: border-box;
 }

 .dealership-row {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
 }

 /* Input & Textarea */
 .dealership-input,
 .dealership-textarea {
     flex: 1;
     padding: 12px 15px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 16px;
     outline: none;
     transition: border-color 0.3s;
 }

 .dealership-input:focus,
 .dealership-textarea:focus {
     border-color: #008744;
 }

 .dealership-full-row {
     width: 100%;
     margin-bottom: 25px;
 }

 .dealership-textarea {
     width: 100%;
     min-height: 120px;
     display: block;
     box-sizing: border-box;
 }

 /* Button */
 .dealership-footer {
     text-align: center;
 }

 .dealership-submit {
     background-color: #008744;
     color: #fff;
     padding: 12px 35px;
     border: none;
     border-radius: 5px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: opacity 0.3s;
 }

 .dealership-submit:hover {
     opacity: 0.9;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .dealership-row {
         flex-direction: column;
         gap: 20px;
     }

     .dealership-line {
         display: none;
         /* Hide lines on mobile to save space */
     }
 }

 /* service.php styles */
 :root {
     --primary-green: #2e7d32;
     --accent-orange: #e67e22;
     --text-gray: #777;
 }

 .services-section {
     padding: 60px 20px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Header Style */
 .services-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 50px;
 }

 .services-header h2 {
     color: var(--accent-orange);
     font-size: 24px;
     font-weight: 400;
 }

 .diamond-icon {
     width: 15px;
     height: 15px;
     background-color: var(--primary-green);
     transform: rotate(45deg);
     display: inline-block;
 }

 /* Grid Layout */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px 20px;
     justify-items: center;
 }

 .service-item {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 /* Diamond Container Logic */
 .diamond-container {
     width: 140px;
     height: 140px;
     border: 15px solid var(--primary-green);
     transform: rotate(45deg);
     /* Rotates the square to a diamond */
     overflow: hidden;
     margin-bottom: 35px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
     border-radius: 20px;
 }

 .diamond-content {
     width: 100%;
     height: 100%;
     transform: rotate(-45deg) scale(1.4);
     /* Counter-rotates image to keep it straight */
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* Placeholder image styling - replace with your actual images */
 .placeholder-img {
     width: 100%;
     height: 100%;
     background-color: #ddd;
     background-size: cover;
     background-position: center;
 }

 /* Text Labels */
 .service-label {
     color: var(--accent-orange);
     font-size: 20px;
     margin-top: 10px;
 }

 /* Hover Effect */
 .service-item:hover .diamond-container {
     transform: rotate(45deg) scale(1.05);
 }

 /* This ensures the image fills the diamond and stays centered */
 .diamond-content img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* This prevents the image from stretching/squeezing */
     display: block;
 }

 /* Optional: If you want a slight zoom effect on the image itself when hovering */
 .service-item:hover img {
     transform: scale(1.1);
     transition: transform 0.3s ease;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 /* tender.php */
 :root {
     --bg-light: #f4f7f6;
     --card-light: #ffffff;
     --card-dark: #0a0a0a;
     --text-muted: #6b7280;
     --btn-gray: #6b7280;
     --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
 }

 .pricing-section {
     background-color: var(--bg-light);
     padding: 58px 20px;
     font-family: 'Inter', -apple-system, sans-serif;
     text-align: center;
 }

 .section-title {
     font-size: 1.7rem;
     font-weight: 500;
     letter-spacing: 2px;
     margin-bottom: 50px;
     color: #333;
 }

 .pricing-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     max-width: 1100px;
     margin: 0 auto;
 }

 /* Base Card Styling */
 .pricing-card {
     background: var(--card-light);
     border-radius: 20px;
     padding: 50px 30px;
     position: relative;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     justify-content: center;
     border: 1px solid rgba(0, 0, 0, 0.03);
 }

 .pricing-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 /* Featured Card (Black) */
 .pricing-card.featured {
     background: var(--card-dark);
     color: white;
 }

 .pricing-card.featured .category-label,
 .pricing-card.featured .description {
     color: #a3a3a3;
 }

 .pricing-card.featured .divider {
     background: rgba(255, 255, 255, 0.1);
 }

 /* Typography Inside Cards */
 .category-label {
     display: block;
     font-size: 0.85rem;
     letter-spacing: 3px;
     color: var(--text-muted);
     margin-bottom: 15px;
 }

 .price {
     font-size: 2.8rem;
     font-weight: 600;
     margin: 0 0 15px 0;
     letter-spacing: -1px;
 }

 .description {
     font-size: 0.95rem;
     color: var(--text-muted);
     margin-bottom: 30px;
 }

 .divider {
     height: 1px;
     background: rgba(0, 0, 0, 0.08);
     width: 80%;
     margin: 0 auto 40px;
 }

 /* Button Styling */
 .apply-btn {
     display: inline-block;
     padding: 12px 35px;
     background-color: var(--btn-gray);
     color: white;
     text-decoration: none;
     border-radius: 8px;
     font-weight: 500;
     font-size: 0.9rem;
     transition: var(--transition);
 }

 .apply-btn:hover {
     background-color: #4b5563;
     letter-spacing: 0.5px;
 }

 .featured .apply-btn {
     background-color: #ffffff;
     color: #000000;
 }

 .featured .apply-btn:hover {
     background-color: #e5e7eb;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .pricing-container {
         grid-template-columns: 1fr;
     }
 }

 /* breadcrumb */
 /* Resetting some basic elements for the section to work correctly */
 .breadcrumb-hero {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Arial', sans-serif;
     /* A clean, strong font similar to the original */
 }

 /* Main Section Styling */
 .breadcrumb-hero {
     position: relative;
     width: 100%;
     height: 240px;
     /* Adjust height as needed (e.g., 250px to 350px) */
     background-image: url('images/turbine.png');
     /* Replace with your image URL */
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     overflow: hidden;
 }

 /* Dark Semi-Transparent Overlay for Text Legibility */
 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     /* Adjust the '0.5' for darkness level */
     z-index: 1;
 }

 /* Text Container */
 .hero-container {
     position: relative;
     z-index: 2;
     /* Keeps text above the overlay */
     padding: 0 20px;
 }

 /* Small Green Subtitle */
 .hero-subtitle {
     color: #00ff00;
     /* Bright Green */
     font-size: 14px;
     font-weight: bold;
     letter-spacing: 1px;
     margin: 0 0 10px 0;
     text-transform: uppercase;
 }

 /* Large White Title */
 .hero-title {
     color: #ffffff;
     font-size: 48px;
     /* Strong and bold */
     font-weight: 800;
     text-transform: uppercase;
     margin: 0 0 15px 0;
     letter-spacing: 2px;
 }

 /* Green Underline Element */
 .title-underline {
     width: 60px;
     /* Length of the underline */
     height: 4px;
     /* Thickness of the underline */
     background-color: #00ff00;
     /* Bright Green */
     margin: 0 auto;
     /* Centers the underline */
 }

 /* Basic Responsiveness for smaller screens */
 @media (max-width: 768px) {
     .breadcrumb-hero {
         height: 200px;
     }

     .hero-title {
         font-size: 32px;
     }
 }

 /* apply now  */

 .application-form-section {
     max-width: 1200px;
     margin: 40px auto;
     padding: 0 20px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: #333;
 }

 /* Header Styling */
 .form-header .subtitle {
     color: #28a745;
     font-weight: 500;
     font-size: 14px;
     margin-bottom: 5px;
 }

 .form-header .title {
     font-size: 32px;
     font-weight: 800;
     color: #1a2b3c;
     margin-top: 0;
 }

 .dash-icon {
     color: #28a745;
     font-size: 24px;
 }

 .intro-text,
 .footer-text {
     line-height: 1.6;
     color: #444;
     font-size: 15px;
     margin: 20px 0;
 }

 /* Grid Layout */
 .input-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 30px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     margin-bottom: 15px;
 }

 .form-group label {
     font-size: 14px;
     margin-bottom: 8px;
     color: #555;
 }

 .form-group label span {
     color: red;
 }

 /* Specific Input Styling from Image */
 .form-group input,
 .form-group select,
 .form-group textarea {
     padding: 12px 15px;
     border: 1px dashed #999;
     /* Dashed border as per image */
     border-radius: 4px;
     font-size: 14px;
     color: #666;
     background-color: #fff;
     outline: none;
 }

 .form-group textarea {
     height: 60px;
     resize: vertical;
 }

 .full-width {
     grid-column: span 3;
     margin-top: 10px;
 }

 /* Button Styling */
 .submit-btn {
     width: 100%;
     background-color: #16c02c;
     color: white;
     padding: 15px;
     border: none;
     border-radius: 4px;
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
     transition: background 0.3s;
     text-transform: uppercase;
 }

 .submit-btn:hover {
     background-color: #12a124;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .input-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .full-width {
         grid-column: span 2;
     }
 }

 @media (max-width: 600px) {
     .input-grid {
         grid-template-columns: 1fr;
     }

     .full-width {
         grid-column: span 1;
     }
 }

 /* business login  */
 :root {
     --brand-green: #39e739;
     /* Matches the green from the image */
     --text-dark: #333333;
     --text-muted: #aaaaaa;
     --border-dashed: #cccccc;
     --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .login-section {
     width: 100%;
     padding: 80px 20px;
     background-color: #f7f4f4;
     font-family: var(--font-family);
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .login-container {
     max-width: 1000px;
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* Image on left, form on right */
     gap: 40px;
     align-items: center;
 }

 /* Left Side: Image Styling */
 .login-image-wrapper {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .login-image-wrapper img {
     max-width: 100%;
     height: auto;
 }

 .image-placeholder {
     width: 100%;
     height: 400px;
     /* Temporary height for visibility */
     background-color: #f5f5f5;
     display: flex;
     justify-content: center;
     align-items: center;
     color: #999;
     border-radius: 8px;
 }

 /* Right Side: Header and Form Styling */
 .form-header .subtitle {
     color: var(--brand-green);
     font-size: 13px;
     font-weight: 500;
     margin-bottom: 5px;
     text-transform: uppercase;
 }

 .form-header .title {
     color: var(--text-dark);
     font-size: 32px;
     font-weight: 600;
     margin-top: 0;
     margin-bottom: 30px;
     letter-spacing: -1px;
 }

 .dash-icon {
     color: var(--brand-green);
     font-size: 24px;
 }

 .business-login-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
 }

 .form-group label {
     font-size: 14px;
     margin-bottom: 8px;
     color: var(--text-dark);
 }

 .form-group label span {
     color: red;
 }

 /* Input Styling (Specific Dashed Border) */
 .form-group input {
     padding: 12px 15px;
     border: 1px dashed var(--border-dashed);
     /* Replicates the image look */
     border-radius: 4px;
     font-size: 14px;
     color: var(--text-dark);
     outline: none;
     background-color: #ffffff;
 }

 .form-group input::placeholder {
     color: var(--text-muted);
 }

 /* Hover/Focus effect for inputs */
 .form-group input:focus {
     border-color: #999;
 }

 /* Button Styling */
 .login-btn {
     width: 100%;
     background-color: var(--brand-green);
     color: white;
     padding: 12px;
     border: none;
     border-radius: 4px;
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
     transition: background 0.3s;
     text-transform: uppercase;
     margin-top: 10px;
 }

 .login-btn:hover {
     background-color: #32cd32;
 }

 /* Basic Responsiveness */
 @media (max-width: 768px) {
     .login-container {
         grid-template-columns: 1fr;
         /* Stacks image on top of form */
         gap: 50px;
         text-align: center;
     }

     .form-header .title {
         font-size: 28px;
     }

     .business-login-form {
         text-align: left;
         /* Keeps form fields aligned left */
     }
 }

 /* contact.php */
 :root {
     --primary-green: #008751;
     --dark-blue: #1c2b39;
     --bg-soft: #f8fafc;
     --text-gray: #64748b;
 }

 .contact-section {
     padding: 40px 20px;
     background-color: var(--bg-soft);
     font-family: 'Inter', sans-serif;
     display: flex;
     justify-content: center;
 }

 .contact-card {
     background: white;
     width: 100%;
     max-width: 1100px;
     border-radius: 24px;
     display: flex;
     overflow: hidden;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
 }

 /* Info Panel (Left) */
 .contact-info {
     flex: 1;
     background-color: var(--dark-blue);
     padding: 60px;
     color: white;
 }

 .contact-info h2 {
     font-size: 2.5rem;
     margin-bottom: 40px;
     font-weight: 700;
 }

 .info-block {
     margin-bottom: 30px;
 }

 .label-heading {
     color: #94a3b8;
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 5px;
 }

 .info-text {
     font-size: 1.1rem;
     font-weight: 500;
 }

 .link {
     color: #4ade80;
 }

 /* Form Panel (Right) */
 .contact-form-wrapper {
     flex: 2;
     padding: 60px;
 }

 .form-row {
     display: flex;
     gap: 30px;
 }

 /* Floating Label Animation Logic */
 .input-group {
     position: relative;
     margin-bottom: 40px;
     flex: 1;
 }

 .input-group input,
 .input-group textarea {
     width: 100%;
     padding: 10px 0;
     font-size: 16px;
     color: var(--dark-blue);
     border: none;
     border-bottom: 1px solid #cbd5e1;
     background: transparent;
     outline: none;
     transition: 0.3s;
 }

 .input-group label {
     position: absolute;
     top: 10px;
     left: 0;
     color: var(--text-gray);
     pointer-events: none;
     transition: 0.3s ease all;
 }

 /* When focused or valid, label floats up */
 .input-group input:focus~label,
 .input-group input:valid~label,
 .input-group textarea:focus~label,
 .input-group textarea:valid~label {
     top: -20px;
     font-size: 12px;
     color: var(--primary-green);
     font-weight: 600;
 }

 .bar {
     position: relative;
     display: block;
     width: 100%;
 }

 .bar:before {
     content: '';
     height: 2px;
     width: 0;
     bottom: 0;
     position: absolute;
     background: var(--primary-green);
     transition: 0.4s ease all;
     left: 50%;
 }

 .input-group input:focus~.bar:before,
 .input-group textarea:focus~.bar:before {
     width: 100%;
     left: 0;
 }

 /* Button Styling */
 .submit-btn {
     position: relative;
     background: var(--primary-green);
     color: white;
     padding: 16px 40px;
     border: none;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     overflow: hidden;
     transition: transform 0.2s ease;
 }

 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 135, 81, 0.2);
 }

 .submit-btn:active {
     transform: translateY(-1px);
 }

 /* Responsive Styles */
 @media (max-width: 900px) {
     .contact-card {
         flex-direction: column;
     }

     .form-row {
         flex-direction: column;
         gap: 0;
     }
 }
 @media (max-width: 767px) {
    .contact-section {
        padding: 0; /* Full width on mobile */
    }

    .contact-card {
        flex-direction: column;
        border-radius: 0; /* Removed border radius as requested */
        box-shadow: none; /* Cleaner look for flat mobile screens */
    }

    /* Info Panel Adjustments */
    .contact-info {
        padding: 14px 25px; /* Reduced padding */
    }

    .contact-info h2 {
        font-size: 1.8rem; /* Scaled down header */
        margin-bottom: 25px;
    }

    .info-block {
        margin-bottom: 20px;
    }

    .info-text {
        font-size: 1rem; /* Smaller text */
    }

    /* Form Panel Adjustments */
    .contact-form-wrapper {
        padding: 40px 25px; /* Reduced padding */
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .input-group {
        margin-bottom: 30px; /* Tighter spacing */
    }

    .input-group input, 
    .input-group textarea {
        font-size: 14px; /* Smaller input text */
    }

    /* Button Adjustments */
    .submit-btn {
        width: 100%; /* Full width button is easier to tap on mobile */
        padding: 12px 20px; /* Smaller button size */
        font-size: 14px;
        border-radius: 8px;
    }
}


 /* about.php */
 :root {
     --primary-green: #28a745;
     --dark-text: #2c3e50;
     --light-gray: #f8f9fa;
     --border-color: #e9ecef;
 }

 .info-section {
     padding: 56px 33px;
     background-color: white;
     font-family: 'Inter', sans-serif;
 }

 .info-container {
     max-width: 1100px;
     margin: 0 auto;
     display: flex;
     gap: 40px;
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     border: 1px solid var(--border-color);
 }

 /* Sidebar Styling */
 .info-tabs {
     flex: 1;
     background: var(--light-gray);
     display: flex;
     flex-direction: column;
     padding: 20px;
     border-right: 1px solid var(--border-color);
 }

 .tab-btn {
     padding: 18px 25px;
     text-align: left;
     border: none;
     background: none;
     font-size: 16px;
     font-weight: 600;
     color: var(--text-gray);
     cursor: pointer;
     border-radius: 10px;
     transition: 0.3s;
     margin-bottom: 10px;
 }

 .tab-btn:hover {
     background: rgba(40, 167, 69, 0.1);
     color: var(--primary-green);
 }

 .tab-btn.active {
     background: var(--primary-green);
     color: white;
     box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
 }

 /* Content Styling */
 .info-content {
     flex: 2.5;
     padding: 50px;
 }

 .tab-panel {
     display: none;
     animation: fadeIn 0.5s ease;
 }

 .tab-panel.active {
     display: block;
 }

 .tab-panel h3 {
     font-size: 24px;
     color: var(--dark-text);
     margin-bottom: 20px;
     border-bottom: 2px solid var(--primary-green);
     display: inline-block;
     padding-bottom: 5px;
 }

 .tab-panel p {
     line-height: 1.8;
     color: #555;
     margin-bottom: 15px;
 }

 /* Product Cards for better interaction */
 .product-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
 }

 .product-card {
     padding: 20px;
     background: var(--light-gray);
     border-radius: 12px;
     border-left: 4px solid var(--primary-green);
 }

 .product-card h4 {
     margin-top: 0;
     color: var(--primary-green);
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .info-container {
         flex-direction: column;
     }

     .info-tabs {
         flex-direction: row;
         overflow-x: auto;
     }

     .tab-btn {
         white-space: nowrap;
     }

     .product-grid {
         grid-template-columns: 1fr;
     }
   }

   @media (max-width: 480px) {
    .top-bar {
    font-size: 9px;
    font-weight: 700;
}
    }

    /* query for header mobile view  */
    @media (max-width: 767px) {
    /* Remove padding from the outer wrapper */
    .accordion-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        overflow-x: hidden; /* Prevents unwanted horizontal scrolling */
    }

    /* Ensure the container takes full width */
    .accordion-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Ensure panels stretch to fill the width */
    .panel {
        width: 100% !important;
        border-radius: 0 !important; /* Optional: removes rounded corners for a seamless edge-to-edge look */
    }

    .main-header{
        padding:0 !important;
    }

    .accordion-container{
        gap:0px;
    }
}

/* static image and slider  query for mobile */
@media (max-width: 768px) {
   .hero-nav-btn{
    top:37% !important;
   }

   .hero-slider-section{
    height:474px !important;
   }

   .np-section-title{
    font-size:1.7rem;
    margin-bottom:14px;
   }

   .nonprofit-section{
    padding:16px 0 !important;
   }

   .np-text-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1;
}

.np-text-content p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 12px;
    opacity: 0.9;
}

.np-slide-text{
    padding:14px;
}

.np-nav-btn{
    top:14%;
}

.dealership-section{
    padding:13px 0;
}

.iffco-footer{
        padding: 14px 14px;
}

.footer-container{
    gap:8px;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.slide {
    min-width: 286px !important;
    padding:12px;
    height:7rem;
}

    .breadcrumb-hero {
        height: 109px;
    }

    .diamond-container {
    width: 119px;
    height: 119px;
}
.services-section {
    padding: 5px 20px;
}

.pricing-card {
    padding: 16px 23px;
}

.price {
    font-size: 1.7rem;
}
.pricing-section {
    padding: 11px 20px;
}
.pricing-container{
    gap:11px;
}

.login-section {
    width: 100%;
    padding: 25px 20px;
}

.login-image-wrapper img {
    max-width: 68%;
    
}
.image-placeholder {
    width: 100%;
    height: 176px;
}

.business-login-form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.intro-text, .footer-text {
    line-height: 1.6;
    color: #444;
    font-size: 12px;
    margin: -14px 0;
}
.input-grid{
    gap:5px;
}

.info-section{
    padding:0px;
}
.info-tabs{
    padding:0px;
}
.info-content {
    flex: 2.5;
    padding: 20px;
}

.tab-panel.active {
    display: block;
    text-align: flex-start;
}
.info-container{
    gap:0px;
}

.tab-panel p {
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
    font-size: 14px;
}
.tab-panel h3 {
    font-size: 20px;
}
    .hero-title {
        font-size: 22px;
    }

    .divider {
  display:none;
}
}