/* CSS Reset and Base Styles */

body{
    zoom:0.8;
}

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

:root {
    /* Light theme colors */
    --primary-color: #C6E7FF;
    --secondary-color: #D4F6FF;
    --accent-color: #FFDDAE;
    --background-color: #FBFBFB;
    --text-color: #333333;
    --text-light: #666666;
    --card-background: #FFFFFF;
    --navbar-background: rgba(251, 251, 251, 0.95);
    --footer-background: #333333;
    --border-color: #E0E0E0;
}

[data-theme="dark"] {
    /* Dark theme colors */
    --primary-color: #1a4d66;
    --secondary-color: #1a5966;
    --accent-color: #b8941f;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --text-light: #cccccc;
    --card-background: #2a2a2a;
    --navbar-background: rgba(26, 26, 26, 0.95);
    --footer-background: #111111;
    --border-color: #404040;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navbar-background);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-left {
    font-size: larger;
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover {
    color: red;
}

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

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

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #93BFEF;
    color: var(--text-color);
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: rgb(255, 255, 255);
    border: 2px solid rgb(221, 221, 221);
    box-shadow: 10px 10px 30px black;
    color: #333;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--background-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.cloud-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cloud-icon {
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 12px;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cloud-icon:hover {
    transform: translateY(-5px);
}

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

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

.feature-card {
    padding: 2rem;
    background: var(--card-background);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    display: inline-flex;
    padding: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Problem Section Styles */
.problem-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-align: center;
}

.problem-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.problem-content {
    padding: 80px 0;
}

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

.problem-point {
    padding: 2rem;
    background: var(--card-background);
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.problem-point h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* Solution Section Styles */
.solution-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
    color: white;
    text-align: center;
}

.solution-benefits {
    padding: 80px 0;
}

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

.benefit-card {
    padding: 2rem;
    background: var(--card-background);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
    border-radius: 50%;
    color: white;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.steps {
    padding: 80px 0;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: #333;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step:nth-child(even) .step-number {
    margin-right: 0;
    margin-left: 2rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
}

.security-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--text-color);
}

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

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

.security-feature {
    text-align: center;
    padding: 1.5rem;
}

.security-icon {
    display: inline-flex;
    padding: 1rem;
    background: var(--card-background);
    border-radius: 50%;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-hero {
    padding: 120px 0 40px;
    text-align: center;
}

.contact-content {
    padding: 40px 0 80px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--background-color);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #ddfaff);
    text-align: center;
    color: #333;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    display: inline-flex;
    padding: 0.5rem;
    background: #444;
    border-radius: 50%;
    color: #ccc;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #333;
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: #ccc;
}

/* Page-specific content */
.page-content {
    padding: 120px 0 80px;
}

.page-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navbar-background);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .cloud-icons {
        gap: 1rem;
    }
    
    .cloud-icon {
        padding: 1rem;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-number {
        margin: 0 0 1rem 0 !important;
    }
    
    .contact-form {
        margin: 0 20px;
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Dark mode specific adjustments */
[data-theme="dark"] .hero {
    background: #414449;
}
[data-theme="dark"] .box1 {
    background-color: rgb(212, 206, 206); 
    color: rgb(248, 242, 242); 
    opacity: 0.2;
    border-radius:10px; 
    padding:5px; 
    height:100%; 
    margin:10px; 
}


[data-theme="dark"] .problem-hero {
    background: linear-gradient(135deg, #c44569, #f8b500);
}

[data-theme="dark"] .solution-hero {
    background: linear-gradient(135deg, #0c7b93, #1e3799);
}

[data-theme="dark"] .cta {
    background: linear-gradient(150deg, #c0c0c0, #636363);
    border: 2px solid black;
    color: #ffffff;
}



[data-theme="dark"] .btn-secondary {
    background: #333333;
    color: white;
}
[data-theme="dark"] .btn-secondary:hover {
    background: white;
    color: #333333;
    border: 3px solid black;
}
.head-h1 {
  color: #2f2f2f;
}

[data-theme="dark"] .head-h1 {
  color: #ffffff;
}
.head-h2 {
    color: #171747;
}
[data-theme="dark"] .hero-subtitle {
    color: #ffffff;
}


/* Common styling for all sections */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  gap: 30px;
}

/* Alternate layouts */
.section-agent {
  flex-direction: row;              /* content left, image right */
  background: #f9f9f9;
}

.section-job {
  flex-direction: row-reverse;      /* content right, image left */
  background: #f0f0f0;
}

.section-email {
  flex-direction: row;              /* content left, image right */
  background: #f9f9f9;
}

/* Text styling */
.text {
  flex: 1;
}

.text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #444;
}

.text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Image styling */
.image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image img {
  max-width: 80%;
  box-shadow: 10px 10px 50px #282727;
  height: auto;
  border-radius: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  .section,
  .section-agent,
  .section-job,
  .section-email {
    flex-direction: column !important;
    text-align: center;
  }
}

[data-theme="dark"] .section-job-para{
    color: #ffffff;
    font-size: large;
    
}
[data-theme="dark"] .section-email-para{
    color: #ffffff;
    font-size: large;
    
}
[data-theme="dark"] .section-agent-para{
    color: #ffffff;    
    font-size: large;
}
[data-theme="dark"] .section-agent {
  background: #474747;
}

[data-theme="dark"] .section-job {
  background: #474747c5;
}

[data-theme="dark"] .section-email {
  background: #474747;
}

[data-theme="dark"] .section-job-h2{
    color: #ffffff;
    
    
}
[data-theme="dark"] .section-email-h2{
    color: #ffffff;
    
    
}
[data-theme="dark"] .section-agent-h2{
    color: #ffffff;    
    
}

[data-theme="dark"] .btn-primary {
    background: rgb(180, 180, 180);
    border: 2px solid black;
    box-shadow: 10px 10px 30px black;
    color: #333;
}