/* Import Navigation Styles */
@import url('nav.css');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "poppins", sans-serif;
    background: #F6F9FF;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Navigation Styles - Using nav.css import */

/* Breadcrumb */
.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

/* Hero Section */
.vision-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #EEF4FF, #FFFFFF);
    padding-top: 80px;
    overflow: hidden;
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
}

.vision-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #132C6F;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    color: #5A6473;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #5A6473;
}

.highlight-item i {
    color: #2563EB;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Layouts */
.data-strategy-section,
.analytics-services-section,
.business-intelligence-section,
.advanced-analytics-section,
.data-engineering-section,
.industry-applications-section,
.key-benefits-section,
.approach-section {
    padding: 80px 20px;
    background: #F4F8FF;
}

.business-intelligence-section,
.advanced-analytics-section,
.industry-applications-section,
.approach-section {
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: #2563EB;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #070D5E;
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #6B7280;
    font-family: "inter", sans-serif;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.content-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 1rem;
}

.content-card p {
    font-size: 1rem;
    color: #5A6473;
    font-family: "inter", sans-serif;
}

.content-card ul {
    list-style: none;
}

.content-card li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: "inter", sans-serif;
}

.content-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-size: 0.8rem;
    top: 0.25rem;
}

.metric-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-item {
    background: #F4F8FF;
    border-radius: 15px;
    padding: 1rem 1.2rem;
    text-align: center;
    flex: 1;
}

.metric-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 0.3rem;
}

.metric-item p {
    font-size: 0.85rem;
    color: #6B7280;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(14, 165, 233, 0.2);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 0.6rem;
}

.info-card p {
    font-size: 0.95rem;
    color: #5A6473;
    font-family: "inter", sans-serif;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.tech-tags span {
    background: #F4F8FF;
    color: #2563EB;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tech-strip {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-strip span {
    background: #eef2ff;
    color: #4338ca;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(14, 165, 233, 0.2);
}

.benefit-card i {
    font-size: 2.2rem;
    color: #2563EB;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2563EB;
    margin-bottom: 0.6rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #5A6473;
    font-family: "inter", sans-serif;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.approach-step {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 30px;
    border-radius: 50%;
    background: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563EB;
}

.step-content p {
    font-size: 0.95rem;
    color: #5A6473;
    font-family: "inter", sans-serif;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4FA3FF 0%, #2563EB 100%);
    border: 2px solid #2563EB;
    border-radius: 30px;
    margin: 60px -20px;
    padding: 60px 20px;
    text-align: center;
    width:80%;
    margin-left:12%;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-family: "inter", sans-serif;
    font-weight: 400;
}

.cta-content button {
    width: 220px;
    height: 50px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 25px;
    color: #2563EB;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.cta-content button:hover {
    background-color: #F4F8FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.cta-content button a {
    color: inherit;
    text-decoration: none;
}

.secondary-btn {
    border: 2px solid #2563EB !important;
    color: #2563EB !important;
}

.secondary-btn a {
    color: inherit;
}

.secondary-btn:hover {
    background-color: #2563EB !important;
    color: white !important;
}

/* Footer Styles */
footer{
    width: 100%;
    margin-top: 60px;
}

#footbox{
    width: 100vw;
    height: 300px;
    padding: 30px;
    background-color: rgb(82, 80, 80);
    margin-top: 20px;
    margin-left: -5vw;
}

#footbox img{
    width: 20px;
    height: auto;
    object-fit: contain;
}

#footabout{
    width: 85vw;
    height: auto;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

#footnav{
    width: 45vw;
    height: auto;
    display: flex;
    justify-content: center;
    gap:20vw;
    margin-left: 20%;
}

#footnav1{
    display: flex;
    flex-direction: column;
    gap:9px;
}

#footnav2{
    display: flex;
    flex-direction: column;
    gap:9px;
}

#footnav a{
    color: #827E7E;
    text-decoration: none;
}

#footlogo{
    height: 5vh;
    width: 10vw;
    font-size: 22px;
    margin-top: -8vh;
    letter-spacing: -1px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footabout img {
    width: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#footabout_title{
    width: 19vw;
}

/* Responsive Design */
@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .nav-container {
        padding-left: 20px;
    }

    .logo{
        margin-top:-2%;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .approach-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .services-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
    }

    .services-dropdown.submenu-open .dropdown-menu {
        display: block;
    }

    .services-dropdown.submenu-open .services-link i {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    .section-icon i {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content button {
        width: 170px;
        height: 45px;
        font-size: 1rem;
        margin: 0.5rem 0.2rem;
    }
    
    
    #footbox{
        height: 70vh;
        
    }
    #footbox h2{
        margin-left: -50px;
    }
    #footnav{
        margin-left:45vw ;
    }
    #footnav{
        display: flex;
        flex-direction: column;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    /* Navigation adjustments */
    .nav-container {
        width: 95%;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 2.5%;
    }
    
    .logo {
        margin-left: 3%;
        margin-right: auto;
    }
    
    #contact-btn {
        width: 100px;
        font-size: 0.8rem;
    }
    
    .lang-btn-container {
        width: 100px;
    }
    
    .lang-btn-container button {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding-left: 20px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        margin-left: 12px;
    }

    #contact-btn {
        justify-content: flex-start;
        align-items: center;
        padding-left: 16px;
        height: 46px;
    }

    #contact-btn a {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-content p {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 60px 20px;
    }

    .services-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
        background: transparent;
    }

    .services-dropdown .dropdown-menu a {
        padding-left: 32px;
    }

    .services-dropdown.submenu-open .dropdown-menu {
        display: block;
    }

    .services-dropdown.submenu-open .services-link i {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-icon {
        width: 60px;
        height: 60px;
    }

    .section-icon i {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content button {
        width: 170px;
        height: 45px;
        font-size: 1rem;
        margin: 0.5rem 0.2rem;
    }

    #footlogo {
        justify-content: center;
    }
    
    #footbox{
        height: 70vh;
    }
    #footbox h2{
        margin-left: -50px;
    }
    #footnav{
        margin-left:45vw ;
    }
    #footnav{
        display: flex;
        flex-direction: column;
    }
}
