/* Global Styles */
/* :root {
    --primary: #1E3A8A;
    --secondary: #D97706;
    --light: #F5F5F4;
    --accent: #047857;
    --dark: #1F2937;
    --text: #374151;
    --text-light: #6B7280;
} */

:root {
    /* New Green & Gold Theme */
    --primary: #2A5C3D;  /* Deep green (main color) */
    --primary-light: #3D7A54; /* Lighter green */
    --secondary: #D4AF37; /* Gold (accent color) */
    --secondary-light: #E8C874; /* Light gold */
    --accent: #1E3A29;   /* Dark green (for contrasts) */
    
    /* Neutrals adjusted for green theme */
    --light: #F5F9F7;    /* Very light green tint */
    --dark: #1A2A21;     /* Dark green for text */
    --text: #2D3D34;     /* Slightly softened dark green */
    --text-light: #5A6D63; /* Lighter text */
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    /* background-color: var(--primary);
    color: white; */
    background-color: var(--secondary);
    color: var(--accent); /* Dark text for contrast */
}

.btn.primary:hover {
    background-color: var(--secondary-light);
    /* background-color: #152C6E; */
}

.btn.secondary {
    background-color: var(--primary);
    color: white; 
    /* background-color: transparent;  */
    border: 2px solid var(--primary);
    /* color: var(--primary); */
}

.btn.secondary:hover {
    /* background-color: #B65D06; */
    background-color: var(--primary-light);
    color: white;
}

/* Header Styles */
.header {
    color: white;
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(42, 92, 61, 0.15);
    /* background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary);
    font-size: 24px;
}

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

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    /* color: var(--text); */
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover, 
.main-nav ul li a.active {
    /* color: var(--primary); */
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    /* background: linear-gradient(rgba(42, 92, 61, 0.85), rgba(42, 92, 61, 0.85)), 
              url('../images/hero-bg.jpg'); */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--secondary-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Pillars Section */
.pillars {
    padding: 80px 0;
    text-align: center;
}

.pillar, .service-card, .approach-card {
    border-top: 3px solid var(--secondary);
}

.pillars h2 {
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--primary);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.pillar h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background-color: var(--light);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Grid Section */
.products-grid {
    padding: 80px 0;
    background-color: var(--light);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card .product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-card .product-content {
    padding: 25px;
}

.product-card .product-content h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.product-card .product-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

/* Products Preview Section */
.products-preview {
    padding: 80px 0;
}

.products-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.product-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
}

.product-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-details p {
    margin-bottom: 20px;
    font-size: 18px;
}

.product-details ul {
    margin-bottom: 30px;
    list-style-position: inside;
}

.product-details ul li {
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Footer Styles */
.footer {
    /* background-color: var(--dark); */
    background-color: var(--accent);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, 
.footer-col h4 {
    margin-bottom: 20px;
    /* color: white; */
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    /* border-top: 1px solid var(--text-light); */
    color: var(--text-light);
    font-size: 14px;
}

/* Logo Styles */
.logo {
    height: 90px; /* Adjust based on your logo's aspect ratio */
    /* padding: 5px 0; */
}

.logo-img {
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 2px var(--secondary-light));
}

.logo-img:hover {
    opacity: 0.9;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/products-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

/* Distribution Statement */
.distribution-statement {
    padding: 40px 0;
    background-color: var(--accent);
    color: white;
    text-align: center;
}

.distribution-statement p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

/* Product Section */
.product-section {
    padding: 80px 0;
}

.product-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.product-detail.reverse {
    direction: rtl;
}

.product-detail.reverse > * {
    direction: ltr;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-info p {
    margin-bottom: 20px;
    font-size: 18px;
}

.product-info ul {
    margin-bottom: 30px;
    list-style-position: inside;
}

.product-info ul li {
    margin-bottom: 10px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light);
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Brochure Section */
.brochure-section {
    padding: 80px 0;
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), url('../images/brochure-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.brochure-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.brochure-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.brochure-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.brochure-form .form-group {
    margin-bottom: 20px;
}

.brochure-form input {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
}

.brochure-form button {
    width: 100%;
}

/* About Page Styles */
.about-mission {
    padding: 80px 0;
}

.about-mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.mission-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: var(--light);
}

.founder-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 8px;
}

.founder-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.founder-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.founder-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.founder-quote {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
}

.founder-quote p {
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.founder-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--secondary);
    line-height: 1;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
}

.approach-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.approach-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Why Choose Us Page Styles */
.pricing-model {
    padding: 80px 0;
    background-color: var(--light);
}

.pricing-model h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.model-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.traditional-model, .our-model {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.model-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.model-visual {
    margin-bottom: 30px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.boat {
    background-color: #E5E7EB;
    padding: 15px 30px;
    border-radius: 30px;
    margin: 10px 0;
    position: relative;
}

.boat::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #E5E7EB;
}

.shared-boat {
    background-color: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 40px;
    width: 80%;
    text-align: center;
    position: relative;
}

.shared-boat::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--accent);
}

.shared-boat span {
    display: inline-block;
    margin: 0 15px;
}

.model-comparison ul {
    list-style-position: inside;
}

.model-comparison ul li {
    margin-bottom: 10px;
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
}

.transparency-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.transparency-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.transparency-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.transparency-content ul {
    list-style-position: inside;
    margin-bottom: 30px;
}

.transparency-content ul li {
    margin-bottom: 10px;
}

.transparency-image img {
    width: 100%;
    border-radius: 8px;
}

/* Service Excellence Section */
.service-excellence {
    padding: 80px 0;
    background-color: var(--light);
}

.service-excellence h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.excellence-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.excellence-card:hover {
    transform: translateY(-10px);
}

.excellence-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.excellence-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Clients Page Styles */
.clients-showcase {
    padding: 80px 0;
}

.clients-showcase h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.client-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--light);
}

.partners-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.partners-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.partner-logo {
    background-color: white;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo-placeholder {
    color: var(--text-light);
    font-weight: bold;
}

.partner-cta {
    text-align: center;
    margin-top: 30px;
}

.partner-cta p {
    margin-bottom: 20px;
    font-size: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--secondary);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    font-size: 40px;
    margin-right: 20px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 24px;
    margin-right: 20px;
    color: var(--secondary);
}

.info-content h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

/* Future Vision Page Styles */
.roadmap-section {
    padding: 80px 0;
}

.roadmap-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 0;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 70px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 70px;
}

.timeline-year {
    /* background-color: var(--primary);
    color: white; */
    background-color: var(--secondary);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* Innovation Section */
.innovation-section {
    padding: 80px 0;
    background-color: var(--light);
}

.innovation-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.innovation-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.innovation-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.innovation-content ul {
    margin-bottom: 30px;
    list-style-position: inside;
}

.innovation-content ul li {
    margin-bottom: 15px;
}

.innovation-image img {
    width: 100%;
    border-radius: 8px;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
}

.partnership-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.partnership-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.partner-opportunities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.opportunity-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-10px);
}

.opportunity-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.partnership-cta {
    text-align: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .logo {
        height: 70px;
    }
    .mobile-menu-btn {
        display: block; /* Show hamburger on mobile */
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    /* Hamburger animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .product-detail {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments for All Pages */
@media (max-width: 1200px) {
    .approach-grid,
    .excellence-grid,
    .client-categories,
    .partner-opportunities {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-mission .container,
    .founder-section .container,
    .transparency-section .container,
    .innovation-section .container {
        grid-template-columns: 1fr;
    }
    
    .mission-image,
    .founder-image,
    .transparency-image,
    .innovation-image {
        order: -1;
    }
    
    .model-comparison,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding: 20px 0 20px 70px;
        text-align: left;
        left: 0;
    }
    
    .timeline-item:nth-child(odd) {
        text-align: left;
        padding-right: 0;
        padding-left: 70px;
    }
    
    .roadmap-timeline::before {
        left: 35px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 20px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .approach-grid,
    .excellence-grid,
    .client-categories,
    .partners-grid,
    .testimonials-grid,
    .partner-opportunities,
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        height: 250px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .mission-content h2,
    .founder-content h2,
    .transparency-content h2,
    .innovation-content h2,
    .contact-form h2,
    .contact-info h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Form Success Message */
.form-success {
    background-color: var(--accent);
    color: white;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Error States */
.error {
    border-color: #EF4444 !important;
}

.error-message {
    color: #EF4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }
    
    body {
        padding: 20px;
        font-size: 14px;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    .page-hero {
        height: auto;
        padding: 20px 0;
        background: none !important;
        color: black;
    }
    
    .page-hero h1 {
        color: black;
    }
}