:root {
    --primary-blue: #007BFF;
    --dark-blue: #0056b3;
    --darker-blue: #0d47a1;
    --gradient-start: #0093E9;
    --gradient-end: #0352bd;
    --light-cyan: #80D0C7;
    --white-color: #ffffff;
    --text-dark: #212529;
    --text-light-gray: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* హెడర్ ఎత్తుకు సరిపోయేలా గ్యాప్ */
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white-color);
    color: var(--text-dark);
    line-height: 1.6;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}   

/* ===== START: CHANGED CODE ===== */
/* మీ అభ్యర్థన ప్రకారం హెడర్ స్టైల్ మార్చబడింది */
.header {
    /* ఈ స్టైల్స్ హెడర్‌ను ఎల్లప్పుడూ 2వ స్క్రీన్‌షాట్‌లో ఉన్నట్లుగా చేస్తాయి */
    background-color: #ffffff; /* తెలుపు, పారదర్శక బ్యాక్‌గ్రౌండ్ */
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(220, 220, 220, 0.5); /* తేలికపాటి బోర్డర్ */
    
    /* ఇప్పటికే ఉన్న స్టైల్స్, వీటిని మార్చలేదు */
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}
/* '.header.scrolled' క్లాస్ ఇప్పుడు అవసరం లేదు కాబట్టి తీసివేయబడింది */
/* ===== END: CHANGED CODE ===== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 600;
}
.logo svg {
    margin-right: 10px;
}
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: var(--primary-blue);
}
.btn {
    padding: 10px 20px; /* Changed */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-outline {
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
}
.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white-color);
}
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white-color);
    border: 1.5px solid var(--primary-blue);
}
.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}
.nav-buttons {
    display: flex;
    gap: 12px;
}
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}
.hero {
    background-image: linear-gradient(135deg, #00a1ff 0%, #007dff 100%);
    margin-top: -80px; /* Sticky header వెనుక బ్యాక్‌గ్రౌండ్ వెళ్ళడానికి */
    color: var(--white-color);
    text-align: center;
    padding-top: 140px; /* Header + కొంత గ్యాప్ కోసం ప్యాడింగ్ పెంచబడింది */
    padding-bottom: 100px;
}
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.25;
}
.underline {
    width: 350px;
    height: 5px;
    background-color: var(--light-cyan);
    margin: 5px auto;
    border-radius: 2px;
}
.hero-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 40px auto;
}
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.btn-light {
    background-color: var(--white-color);
    color: var(--text-dark);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}
.cta-input {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 14px;
    width: 240px;
    border-radius: 8px;
    font-size: 15px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.content-section {
    padding: 90px 0;
}
.content-section.bg-light {
    background-color: var(--bg-light);
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    
}
.section-title h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-light-gray);
    max-width: 700px;
    margin: 0 auto;
}
.content-grid {
    display: grid;
    gap: 25px;
    width: 1200px;             
    max-width: 1200px;        
    height: auto;             
    padding: 5px;            
}

.grid-cols-responsive {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.service-card {
    background: var(--white-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-blue);
}
.service-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 15px;
    color: var(--text-light-gray);
}
.focus-section {
    text-align: center;
    margin-bottom: 50px;
    background-color: var(--white-color);
}
.focus-section p {
    font-size: 17px;
    color: var(--text-light-gray);
    margin-bottom: 8px;
}
.focus-section .highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}
.section-icon {
    width: 48px; height: 48px; background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px auto;
}
.section-icon svg {
    stroke: var(--primary-blue);
}
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.country-item {
    background: var(--white-color); border: 1px solid var(--border-color);
    padding: 20px; border-radius: 8px; text-align: center;
}
.country-item h3 { font-size: 18px; font-weight: 600; }
.country-item h4 { font-size: 16px; margin: 4px 0; }
.country-item p { font-size: 13px; color: var(--text-light-gray); }
.country-icon {
    width: 36px; height: 36px; background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px auto;
}
.coverage-box {
    background-color: #e7f3ff;
    border: 1px solid #b3d7ff;
    padding: 25px; border-radius: 8px; text-align: center;
   
}
.coverage-box h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.coverage-box p { font-size: 15px; color: #004085; max-width: 600px; margin: 0 auto; }

.how-it-works-grid {
    display: grid;
    grid-template-columns: 2fr 1.8fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}
.step-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}
.step-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-light-gray);
    flex-grow: 1;
}
.step-number {
    position: static;
    transform: none;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light-gray);
    margin-bottom: 15px;
}
.step-card .card-icon {
    margin: 0 auto 20px auto;
    background-color: var(--primary-blue);
    border-radius: 50%;
    width: 52px;
    height: 52px;
}
.step-card .card-icon svg {
    stroke: var(--white-color);
    width: 24px;
    height: 24px;
}
.step-link {
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    background-color: #eef2f6;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.step-link:hover {
    /* background-color: #dbe4ee; */
}
.how-it-works-grid .step-card:not(:last-child)::after {
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 19 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: -38px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
}

.collaborate-section {
  background-color: #ffffff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.collaborate-box {
  background-color: #029be6;
  color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 900px;
  text-align: center;
}
.collab-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.collab-subtitle {
  font-size: 18px;
  margin-bottom: 24px;
}
.collab-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.collab-list li::before {
  content: "● ";
  color: #7cf5d3;
  margin-right: 8px;
}

.contact-section {
    padding: 90px 0;
    background-image: linear-gradient(135deg, #00a1ff 0%, #007dff 100%); 
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 2rem;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.contact-info, .quick-actions {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-icon { flex-shrink: 0; }
.contact-item h4 { font-size: 15px; font-weight: 600; margin: 0; }
.contact-item p { font-size: 15px; color: var(--text-light-gray); margin: 0; }
.action-btn {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-light); padding: 15px; border-radius: 8px;
    text-decoration: none; color: var(--text-dark); font-weight: 500;
    margin-bottom: 15px; border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.action-btn:hover { border-color: var(--primary-blue); background-color: white; transform: translateY(-2px); }
.response-time {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #007BFF;
    border-radius: 6px;
}
.response-time p { font-size: 13px; color: var(--text-light-gray); line-height: 1.5; }

.final-cta {
    padding: 80px 0; color: white; text-align: center;
    background-image: linear-gradient(135deg, #00a1ff 0%, #007dff 100%);
}
.final-cta h2 { font-size: 32px; margin-bottom: 15px; }
.final-cta p { max-width: 600px; margin: 0 auto 30px auto; font-size: 17px; opacity: 0.9; }

.footer {
    background-color: #212529;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #495057;
}
.footer-about .logo { color: white; margin-bottom: 15px; }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-links h4 { color: white; font-size: 16px; margin-bottom: 15px; font-weight: 600; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-links a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom ul { list-style: none; display: flex; gap: 20px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    .nav-menu, .nav-buttons {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 71px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        text-align: center;
        z-index: 999;
    }
    .nav-menu.active ul {
        flex-direction: column;
        gap: 20px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .content-grid.grid-cols-responsive,
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-it-works-grid .step-card:not(:last-child)::after {
        display: none;
    }
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero {
        padding: 120px 0 60px 0; /* Adjusted padding-top */
    }
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    .hero-content h2 {
        font-size: 18px;
    }
    .hero-content p, .section-subtitle {
        font-size: 16px;
    }
    .cta-section {
        flex-direction: column;
        gap: 12px;
    }
    .cta-input {
        width: 100%;
        max-width: 280px;
    }
    .features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .content-section, .collaborate-section, .final-cta, .contact-section {
        padding: 60px 0;
    }
    .section-title h2, .final-cta h2 {
        font-size: 28px;
    }
    .content-grid.grid-cols-responsive,
    .how-it-works-grid,
    .country-grid,
    .contact-wrapper,
    .footer-main {
        grid-template-columns: 1fr;
    }
    .how-it-works-grid .step-card:not(:last-child)::after {
        display: none;
    }
    .collaborate-box ul,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}
.logo-orange {
  color: #f97316;
}
.logo-gray {
  color: #111827;
}
.view-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 0.5rem;
  background: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-weight: bold;
}
/* .view-work-btn:hover {
  background-color: #fed7aa;
  color: #111827;
} */
.view-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  width: auto; /* Changed */
  background-color: transparent; /* Changed */
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-weight: bold;
}
/* .view-work-btn:hover {
  background-color: #ffffff;
  color: #111827;
} */
 .hero-subtitle {
color: #F4F7FC;
 }

/* Other sections... (The rest of the CSS remains the same) */
.hero-content h1 {
    font-size: 52px; /* Changed */
    font-weight: 700;
    line-height: 1.25;
    margin-top: 50px;
}
.underline {
    width: 350px;
    height: 5px;
    background-color: var(--light-cyan);
    margin: 5px auto;
    border-radius: 2px;
}
.hero-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 18px; /* Changed */
    max-width: 720px; /* Changed */
    margin: 0 auto 40px auto;
}
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.btn-light {
    background-color: var(--white-color);
    color: var(--text-dark);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}
.cta-input {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 14px;
    width: 240px;
    border-radius: 8px;
    font-size: 15px;
}
.features {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* కొత్త కోడ్ ఇక్కడ ముగుస్తుంది */
.content-section {
    padding: 90px 0;
}
.content-section.bg-light {
    background-color: var(--bg-light);
}
.section-title {
    text-align: center;
    margin-bottom: 40px; /* గ్యాప్ తగ్గించబడింది */
    
}
.section-title h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-light-gray);
    max-width: 700px;
    margin: 0 auto;
}
.content-grid {
    display: grid;
    gap: 25px;

    /* Adjust width and height */
    width: 1200px;             
    max-width: 1200px;        
    height: auto;             /* fits content height */
    padding: 5px;            /* optional spacing inside */
    /* margin: 0 auto; */
}

.grid-cols-responsive {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.service-card {
    background: var(--white-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-blue);
}
.service-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 15px;
    
    color: var(--text-light-gray);
}
.focus-section {
    /*padding: 60px 0 40px 0; /* గ్యాప్ తగ్గించబడింది */
    text-align: center;
    margin-bottom: 50px;
    background-color: var(--white-color);
}
.focus-section p {
    font-size: 17px;
    color: var(--text-light-gray);
    margin-bottom: 8px;
}
.focus-section .highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}
.section-icon {
    width: 48px; height: 48px; background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px auto;
}
.section-icon svg {
    stroke: var(--primary-blue);
}
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.country-item {
    background: var(--white-color); border: 1px solid var(--border-color);
    padding: 20px; border-radius: 8px; text-align: center;
}
.country-item h3 { font-size: 18px; font-weight: 600; }
.country-item h4 { font-size: 16px; margin: 4px 0; }
.country-item p { font-size: 13px; color: var(--text-light-gray); }
.country-icon {
    width: 36px; height: 36px; background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px auto;
}
.coverage-box {
    background-color: #e7f3ff;
    border: 1px solid #b3d7ff;
    padding: 25px; border-radius: 8px; text-align: center;
   
}
.coverage-box h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.coverage-box p { font-size: 15px; color: #004085; max-width: 600px; margin: 0 auto; }

/* ---- START: HOW IT WORKS SECTION (MODIFIED) ---- */
.how-it-works-grid {
    display: grid;
    /* అసమాన వెడల్పుల కోసం కాలమ్‌లను మార్చడం */
    grid-template-columns: 2fr 1.8fr 1.5fr;
    gap: 40px; /* బాణాల కోసం గ్యాప్ పెంచబడింది */
    align-items: stretch; /* అన్ని కార్డులు ఒకే ఎత్తులో ఉండేలా చేస్తుంది */
}
.step-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}
.step-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-light-gray);
    flex-grow: 1; /* టెక్స్ట్ ఏరియాను ఫ్లెక్సిబుల్ చేస్తుంది */
}
.step-number {
    /* పాత స్టైల్స్ తీసివేయబడ్డాయి */
    position: static;
    transform: none;
    background: none;
    border: none;
    /* కొత్త స్టైల్స్ */
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light-gray);
    margin-bottom: 15px;
}
.step-card .card-icon {
    margin: 0 auto 20px auto;
    /* ఐకాన్ స్టైల్ మార్చబడింది */
    background-color: var(--primary-blue);
    border-radius: 50%;
    width: 52px;
    height: 52px;
}
.step-card .card-icon svg {
    stroke: var(--white-color);
    width: 24px;
    height: 24px;
}
.step-link {
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    /* బటన్ లాగా కనిపించడానికి స్టైల్స్ */
    background-color: #eef2f6;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.step-link:hover {
    /* background-color: #dbe4ee; */
}
.how-it-works-grid .step-card:not(:last-child)::after {
    /* బాణం గుర్తును SVGతో మార్చడం */
    content: '';
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3cpolyline points='12 5 19 12 12 19'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: -38px; /* పొజిషన్ సర్దుబాటు */
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
}
/* ---- END: HOW IT WORKS SECTION ---- */

.collaborate-section {
  background-color: #ffffff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.collaborate-box {
  background-color: #029be6; /* Lighter blue like in 2nd screenshot */
  color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 900px;
  text-align: center;
}


.collab-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.collab-subtitle {
  font-size: 18px;
  margin-bottom: 24px;
}

.collab-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.collab-list li::before {
  content: "● ";
  color: #7cf5d3; /* light teal bullet */
  margin-right: 8px;
}


.contact-section {
    padding: 90px 0;
    /* --- CHANGED --- hero సెక్షన్ గ్రేడియంట్‌తో మార్చబడింది */
    background-image: linear-gradient(135deg, #00a1ff 0%, #007dff 100%); 
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 2rem; /* Space between cards */
    /* background: var(--white-color); */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Make each section look like a card */
.contact-info, .quick-actions {
    background: #ffffff; /* తెలుపు రంగుకు మార్చబడింది, ఎందుకంటే బ్యాక్‌గ్రౌండ్ డార్క్‌గా ఉంది */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-icon { flex-shrink: 0; }
.contact-item h4 { font-size: 15px; font-weight: 600; margin: 0; }
.contact-item p { font-size: 15px; color: var(--text-light-gray); margin: 0; }
.action-btn {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-light); padding: 15px; border-radius: 8px;
    text-decoration: none; color: var(--text-dark); font-weight: 500;
    margin-bottom: 15px; border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.action-btn:hover { border-color: var(--primary-blue); background-color: white; transform: translateY(-2px); }
.response-time {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #007BFF;
    border-radius: 6px;
}


.response-time p { font-size: 13px; color: var(--text-light-gray); line-height: 1.5; }

.final-cta {
    padding: 80px 0; color: white; text-align: center;
    /* --- CHANGED --- hero సెక్షన్ గ్రేడియంట్‌తో మార్చబడింది */
    background-image: linear-gradient(135deg, #00a1ff 0%, #007dff 100%);
}
.final-cta h2 { font-size: 32px; margin-bottom: 15px; }
.final-cta p { max-width: 600px; margin: 0 auto 30px auto; font-size: 17px; opacity: 0.9; }

.footer {
    background-color: #212529;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #495057;
}
.footer-about .logo { color: white; margin-bottom: 15px; }
.footer-about p { font-size: 14px; line-height: 1.7; }
.footer-links h4 { color: white; font-size: 16px; margin-bottom: 15px; font-weight: 600; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-links a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom ul { list-style: none; display: flex; gap: 20px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* --- Responsive Design (కొత్తగా మెరుగుపరచబడింది) --- */

/* టాబ్లెట్ మరియు చిన్న డెస్క్‌టాప్‌ల కోసం (992px వరకు) */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    /* 1. హెడర్‌లోని మెనూ మరియు బటన్లను దాచడం */
    .nav-menu, .nav-buttons {
        display: none;
    }
    
    /* 2. హాంబర్గర్ మెనూను చూపించడం */
    .hamburger {
        display: block;
    }

    /* మొబైల్ మెనూ ఓపెన్ అయినప్పుడు స్టైల్స్ */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 71px; /* హెడర్ ఎత్తు */
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        text-align: center;
        z-index: 999;
    }
    .nav-menu.active ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    /* గ్రిడ్ లేఅవుట్‌లను టాబ్లెట్‌లో 2 కాలమ్స్‌గా మార్చడం */
    .content-grid.grid-cols-responsive,
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-grid .step-card:not(:last-child)::after {
        display: none; /* బాణం గుర్తులను దాచడం */
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* మొబైల్ ఫోన్‌ల కోసం (768px వరకు) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 36px; /* 3. మొబైల్ కోసం ఫాంట్ సైజు తగ్గించడం */
        line-height: 1.3;
    }
    .hero-content h2 {
        font-size: 18px;
    }
    .hero-content p, .section-subtitle {
        font-size: 16px;
    }

    /* 4. సెంట్రల్ బటన్ల స్టైల్స్ మార్చడం */
    .cta-section {
        flex-direction: column;
        gap: 12px;
    }
    .cta-input {
        width: 100%;
        max-width: 280px;
    }
    
    .features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .content-section, .collaborate-section, .final-cta, .contact-section {
        padding: 60px 0;
    }
    .section-title h2, .final-cta h2 {
        font-size: 28px;
    }

    /* అన్ని గ్రిడ్‌లను ఒకే కాలమ్‌గా మార్చడం */
    .content-grid.grid-cols-responsive,
    .how-it-works-grid,
    .country-grid,
    .contact-wrapper,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid .step-card:not(:last-child)::after {
        display: none; /* బాణం గుర్తులను దాచడం */
    }

    .collaborate-box ul,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
.logo-container {
  background-color: #ffffffd9; /* semi-transparent white */
}

.logo-container img {
  max-width: 160px;  /* or whatever size fits */
  height: auto;
  display: block;
}
.logo-container1 img {
  max-width: 180px;  /* or whatever size fits */
  height: auto;
  display: block;
  margin-bottom: 20px;
}



.view-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 0.5rem;
  background: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;

}
 
/* .view-work-btn:hover {
  background-color: #fed7aa;
  color: #111827;
} */
.view-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 0.75rem 1.5rem; */
  padding: 17px;
  width: 16%;
 

  font-size: 0.875rem;
  font-weight: bold;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #111827;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
 
.view-work-btn:hover {
  background-color: #ffffff;
  color: #111827;
}
 .hero-subtitle {
color: #F4F7FC;
 }
 .how-it-works-section {
  background-color: #f9fcfd;
  padding: 80px 0;
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.how-it-works-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.step-box {
  background-color: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 32px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.step-number {
  color: #0078d4;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: #0078d4;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.step-button {
  background-color: #eef6fd;
  color: #0078d4;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}
/* ======== START: NEW CSS FOR INDUSTRY SECTION ======== */

/* "Who We Help" సెక్షన్‌లోని బాక్స్‌లకు కొత్త స్టైల్స్ */
/* ======== START: NEW CSS FOR INDUSTRY SECTION ======== */

/* "Who We Help" సెక్షన్‌లోని బాక్స్‌లకు కొత్త స్టైల్స్ */
#who-we-help .service-card {
    padding: 9px 25px;
    background-color: var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 81, 171, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;

    /* పాత బోర్డర్ స్టైల్ */
    border: 1px solid #dce8f5; 

    /* ----> కొత్తగా జోడించిన స్టైల్ <---- */
    /* ఎడమ వైపున 4px మందంతో నీలం రంగు బోర్డర్ */
    border-left: 4px solid var(--primary-blue);
}

/* హోవర్ చేసినప్పుడు స్టైల్ మార్చడం */
#who-we-help .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 81, 171, 0.1);
    border-color: var(--primary-blue);
}

/* ఐకాన్ మరియు టైటిల్ మధ్య గ్యాప్ తగ్గించడం */
#who-we-help .card-icon {
    margin-bottom: 10px;
}

#who-we-help .service-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

#who-we-help .service-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light-gray);
    flex-grow: 1;
}


/* కొత్త లేఅవుట్ కోసం గ్రిడ్ స్టైల్స్ */
.industry-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* రెస్పాన్సివ్ డిజైన్ కోసం సర్దుబాట్లు */
@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== END: NEW CSS FOR INDUSTRY SECTION ======== */
/* ======== START: NEW CSS FOR CONTACT SECTION ======== */

.contact-section {
    padding: 90px 0;
    background-image: linear-gradient(135deg, #00a1ff 0%, #007dff 100%);
}

/* బ్యాక్‌గ్రౌండ్ నీలంగా ఉన్నందున, టైటిల్ రంగును తెల్లగా మార్చడం */
.contact-section .section-title h2,
.contact-section .section-title .section-subtitle {
    color: var(--white-color);
}
.contact-section .section-title .section-subtitle {
    opacity: 0.9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: transparent; /* Wrapper బ్యాక్‌గ్రౌండ్ తొలగించబడింది */
    padding: 0;
    box-shadow: none;
}

/* రెండు కార్డుల కోసం కొత్త స్టైల్స్ */
.contact-info, .quick-actions {
    background: #f0f7ff; /* తేలికపాటి నీలం బ్యాక్‌గ్రౌండ్ */
    border: 1px solid #d1e3f8;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h3, .quick-actions h3 {
    font-size: 20px;
    font-weight: 600;
}

/* Get In Touch సెక్షన్ స్టైల్స్ */
.contact-item { 
    display: flex; 
    align-items: center; /* ఐకాన్‌లు మరియు టెక్స్ట్ మధ్యలో ఉండేలా */
    gap: 15px; 
    margin-bottom: 10px; 
}
.contact-info .contact-icon { 
    flex-shrink: 0;
    background-color: #d1e3f8; /* నీలం సర్కిల్ బ్యాక్‌గ్రౌండ్ */
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info .contact-icon svg {
    stroke: var(--primary-blue);
    width: 22px;
    height: 22px;
}
.contact-item h4 { 
    font-size: 15px; 
    font-weight: 600; 
    margin: 0 0 2px 0; 
}
.contact-item p { 
    font-size: 15px; 
    color: var(--text-light-gray); 
    margin: 0; 
}

/* Quick Actions సెక్షన్ స్టైల్స్ */
.quick-actions .action-btn {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: var(--white-color); /* బటన్ బ్యాక్‌గ్రౌండ్ తెల్లగా మార్చబడింది */
    padding: 15px 20px; 
    border-radius: 8px;
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 500;
    margin-bottom: 0;
    border: 1px solid #d1e3f8;
    transition: all 0.3s ease;
}
.quick-actions .action-btn:hover { 
    border-color: var(--primary-blue); 
    background-color: white; 
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(0, 81, 171, 0.1);
}
.quick-actions .action-btn span {
    display: flex;
    align-items: center;
    gap: 12px; /* ఐకాన్ మరియు టెక్స్ట్ మధ్య గ్యాప్ */
}
.quick-actions .action-btn svg {
    stroke: var(--text-light-gray);
}

/* Response Time బాక్స్ స్టైల్స్ */
.response-time {
    background: #e4eef9; /* కొద్దిగా భిన్నమైన నీలం బ్యాక్‌గ్రౌండ్ */
    padding: 20px;
    border-left: none; /* ఎడమ బోర్డర్ తొలగించబడింది */
    border-radius: 8px;
    margin-top: auto; /* ఈ బాక్స్‌ను కిందకి నెట్టడానికి */
}
.response-time h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}
.response-time p { 
    font-size: 13px; 
    color: var(--text-light-gray); 
    line-height: 1.5; 
}


.quick-actions {
    max-width: 550px;
    width: 100%;
    background-color: #ffffff;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-actions h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: -0.5rem;
    color: #111827;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.form-group { margin-bottom: 0.85rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}
.form-group .required { color: #D9534F; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

/* Styles for the focus glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.submit-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #0d6efd;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}
.submit-btn:disabled { background-color: #6c757d; cursor: not-allowed; }

#form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}
#form-message.success { background-color: #d1e7dd; color: #0f5132; display: block; }
#form-message.error { background-color: #f8d7da; color: #842029; display: block; }

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .form-row .form-group { margin-bottom: 0.85rem; }
}




/* ======================================================= */
/* =========== MOBILE RESPONSIVE FIXES START HERE ========== */
/* ======================================================= */

/* This targets screens smaller than 768px (most mobile phones) */
@media (max-width: 768px) {

    /* 1. Fix the fixed-width grid container */
    .content-grid {
        width: 100%; /* Change fixed width to be flexible */
        padding: 0;   /* Remove extra padding if not needed */
    }
    
    /* 2. Make the main service/industry cards stack into a single column */
    /* This fixes "What We Do", "Who We Help", "Why Partner" sections */
    .grid-cols-responsive,
    .industry-grid {
        grid-template-columns: 1fr; /* Force one column layout */
    }

    /* 3. Improve readability and spacing inside the cards on mobile */
    .service-card {
        padding: 25px; /* Slightly adjust padding for smaller screens */
    }

    .service-card h3 {
        font-size: 18px; /* Make titles slightly smaller */
    }

    .service-card p {
        font-size: 15px; /* Ensure text is readable */
    }

    /* 4. Fix the "How It Works" section to stack vertically */
    .how-it-works-grid {
        grid-template-columns: 1fr; /* Force one column layout */
        gap: 25px; /* Reduce the gap between stacked items */
    }

    /* 5. Fix the contact form and info section to stack vertically */
    .contact-wrapper {
        grid-template-columns: 1fr; /* Force one column layout */
        padding: 0; /* Remove horizontal padding on mobile */
    }
    
    /* 6. Improve padding on sections for better mobile view */
    .content-section, .contact-section {
        padding: 60px 20px; /* Add horizontal padding to the whole section */
    }
    
    .collaborate-box {
        padding: 30px 25px; /* Adjust padding for the collaborate box */
    }
}

/* Optional: For very small phones (below 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px; /* Make the main title even smaller */
    }

    .section-title h2 {
        font-size: 26px; /* Make section titles smaller */
    }

    .contact-info, .quick-actions {
        padding: 25px; /* Reduce padding inside the contact cards */
    }
}







/* ======================================================= */
/* =========== STYLES FOR THE ENQUIRY PAGE =============== */
/* ======================================================= */

#submissions-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards per row on desktop */
    gap: 1.5rem; /* Space between cards */
    max-width: 1140px;
    margin: 0 auto;
}

.submission-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.submission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.submission-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.submission-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0056b3;
}

.submission-card .submission-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.submission-card .card-body p {
    margin-bottom: 0.75rem;
    color: #343a40;
    line-height: 1.5;
}

.submission-card .card-body strong {
    color: #212529;
    margin-right: 5px;
}

.submission-card .card-body hr {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 1rem 0;
}

.submission-card .message-content {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-style: italic;
}

.loading-message,
.error-message,
.no-submissions-message {
    text-align: center;
    font-size: 1.1rem;
    padding: 40px;
    color: #6c757d;
}

.error-message {
    color: #D9534F;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

/* Make it responsive for mobile */
@media (max-width: 992px) {
    #submissions-container {
        grid-template-columns: 1fr; /* Stack cards into a single column on tablets and mobile */
    }
}






