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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

.large-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.highlight {
    background: linear-gradient(120deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.logo-image {
    height: auto;          /* ← Controls logo height */
    width: 50px;           /* ← Maintains aspect ratio */
    margin-right: 10px;    /* ← Space between logo and text */
    object-fit: contain;   /* ← Ensures logo fits within bounds */
    max-width: 200px;      /* ← Prevents logo from being too wide */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual i {
    font-size: 4rem;
    color: #2563eb;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #10b981;
    border-radius: 50%;
    border-top: 2px solid transparent;
    animation: rotate 20s linear infinite;
}

.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Slider for Segmentation */
.segmentation-demo {
    padding: 80px 0;
    background: #f8fafc;
}

.demo-container {
    margin-bottom: 4rem;
}

.demo-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2563eb;
}

.image-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.base-image,
.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.base-image img,
.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* ← This will show the full image without cropping */
    object-position: center;  /* ← This will center the image */
}

.overlay-image {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease;
    opacity: 0.5;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: white;
    text-align: center;
}

.tree-base {
    background: linear-gradient(45deg, #059669, #10b981);
}

.tree-segmented {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
}

.lulc-base {
    background: linear-gradient(45deg, #dc2626, #ef4444);
}

.lulc-segmented {
    background: linear-gradient(45deg, #7c2d12, #ea580c);
}

.placeholder-image p {
    margin-top: 1rem;
    font-size: 1rem;
    color: white;
}

.image-slider {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.image-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Product Demo Video Section */
.product-demo {
    padding: 80px 0;
    background: #f8fafc;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.play-button i {
    margin-left: 4px; /* Slight adjustment for visual centering */
}

.video-info {
    text-align: center;
    color: white;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.video-highlights {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.video-highlights h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.highlight-item:hover {
    background: #e2e8f0;
    border-left-color: #2563eb;
    transform: translateX(5px);
}

.highlight-item i {
    color: #2563eb;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: #666;
    font-weight: 500;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Features Grid */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Task Management Section */
.task-management {
    padding: 80px 0;
    background: #f8fafc;
}

.task-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.task-feature {
    text-align: center;
}

.task-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.task-feature h3 {
    margin-bottom: 1rem;
    color: #333;
}

.task-feature p {
    color: #666;
    line-height: 1.6;
}

/* Industries Grid */
.industries {
    padding: 80px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.industry-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.industry-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #2563eb;
}

.cta-section .btn-primary:hover {
    background: #f8fafc;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #10b981;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10b981;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Products Page Styles */
.products-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.product-section {
    padding: 80px 0;
}

.alt-bg {
    background: #f8fafc;
}

.product-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.feature-list i {
    color: #10b981;
    margin-right: 0.5rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* transition: none !important; */
}

.product-image {
    width: 250%;
    height: 200%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* transition: none !important; */
}

.dashboard-preview,
.map-preview,
.alert-preview,
.lake-monitor,
.alert-system,
.cleaning-tracker,
.setup-visual,
.sync-visual,
.nocode-visual {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    /* animation: none !important; */
}

.dashboard-preview i,
.map-preview i,
.alert-preview i,
.lake-monitor i,
.alert-system i,
.cleaning-tracker i,
.setup-visual i,
.sync-visual i,
.nocode-visual i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.product-screenshots {
    padding: 80px 0;
    background: #f8fafc;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.screenshot-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.screenshot-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 1rem;
}

.screenshot-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.screenshot-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.screenshot-card p {
    color: #666;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-top: 1rem;
}

.company-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tech-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.mission-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-details {
    margin-top: 1.5rem;
}

.mission-details ul {
    list-style: none;
    text-align: left;
}

.mission-details li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.mission-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.approach-section {
    padding: 80px 0;
}

/* Our Approach Grid Layout */
.approach-section {
    padding: 80px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.approach-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: #2563eb;
    font-size: 2rem;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.approach-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.expertise-section {
    padding: 80px 0;
    background: #f8fafc;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.why-choose-section {
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #10b981;
}

.advantage-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .task-features {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-card {
        padding: 2rem;
    }
    
    .approach-number {
        top: -10px;
        left: -10px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .approach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-wrapper {
        margin-bottom: 1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-highlights {
        padding: 1.5rem;
    }
    
    .highlights-grid {
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.6rem;
    }
    
    .highlight-item i {
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .industry-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* .product-section * {
    transition: none !important;
    animation: none !important;
} */

/* ========================================
   DRONAGIRI PAGE STYLES
   ======================================== */

/* Dronagiri Hero Section */
.dronagiri-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.dronagiri-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.dronagiri-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-metadata {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.metadata-item i {
    color: #2563eb;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

/* Dronagiri Introduction Section */
.dronagiri-intro {
    padding: 60px 0;
    background: #ffffff;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.portal-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-top: 2rem;
}

.portal-link i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.2rem;
}

.portal-link p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.portal-link a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.portal-link a:hover {
    text-decoration: underline;
}

/* Basic Info Section */
.basic-info {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(120deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 60px 0;
    background: #ffffff;
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-text h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.solution-text h3:first-child {
    margin-top: 0;
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.dataset-list,
.alignment-list {
    list-style: none;
    padding: 0;
}

.dataset-list li,
.alignment-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.dataset-list i,
.alignment-list i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Milestones Section */
.milestones-section {
    padding: 60px 0;
    background: #f8fafc;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2563eb, #10b981);
}

.milestone-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.milestone-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #f8fafc;
}

.milestone-item.completed .milestone-marker {
    background: linear-gradient(135deg, #10b981, #059669);
}

.milestone-item.in-progress .milestone-marker {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.milestone-marker i {
    color: white;
    font-size: 0.9rem;
}

.milestone-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.milestone-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.milestone-period {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status-badge.completed {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.in-progress {
    background: #fef3c7;
    color: #92400e;
}

.progress-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.progress-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.progress-list i {
    color: #10b981;
}

/* Implementation Section */
.implementation-section {
    padding: 60px 0;
    background: #ffffff;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: #666;
}

.status-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.status-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.status-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.status-card p {
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.ongoing {
    background: #10b981;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-card ul {
    list-style: none;
    padding: 0;
}

.status-card ul li {
    padding: 0.5rem 0;
    color: #444;
    border-bottom: 1px solid #e5e7eb;
}

.status-card ul li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-photo i {
    font-size: 5rem;
    color: white;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 60px 0;
    background: #ffffff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-icon i {
    font-size: 2rem;
    color: white;
}

.impact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
}

.metrics-tracking {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.metrics-tracking h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.metrics-list {
    list-style: none;
    padding: 0;
}

.metrics-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #444;
    font-size: 1.1rem;
    border-bottom: 1px solid #e5e7eb;
}

.metrics-list li:last-child {
    border-bottom: none;
}

.metrics-list i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Future Plans Section */
.future-plans-section {
    padding: 60px 0;
    background: #f8fafc;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.future-list {
    list-style: none;
    padding: 0;
}

.future-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.future-list i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.future-list h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.future-list p {
    color: #666;
    line-height: 1.6;
}

/* SDG Section */
.sdg-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sdg-intro {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sdg-item {
    background: linear-gradient(135deg, #f0f9ff, #f0fdf4);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #10b981;
    transition: transform 0.3s ease;
}

.sdg-item:hover {
    transform: scale(1.05);
}

.sdg-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sdg-item p {
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive Design for Dronagiri Page */
@media (max-width: 768px) {
    .dronagiri-hero h1 {
        font-size: 2rem;
    }
    
    .hero-logos {
        gap: 1.5rem;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .project-metadata {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .milestone-item {
        padding-left: 50px;
    }
    
    .milestone-marker {
        left: 0;
        width: 30px;
        height: 30px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .sdg-grid {
        grid-template-columns: 1fr;
    }
}
