/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

/* Top Navigation Bar */
.top-nav {
    background: #4A74B6;
    color: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

/* Top Navigation Bar */
.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 0 120px;  /* Changed from: padding: 0 32px; */
    display: flex;
    justify-content: flex-start;  /* Changed from: justify-content: center; */
    align-items: center;
}

.top-nav nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s;
}

.top-nav a:hover {
    text-decoration: underline;
}

.top-nav .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 4px;
}

/* Logo Area with Left Border Accent */
.logo-area {
    position: absolute;
    left: 0;
    top: 80px;
    width: 80px;
    height: 400px;
    z-index: 50;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.logo-area img {
    width: 56px;
    height: 56px;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px 40px 120px;
    position: relative;
}

/* Brand Header */
.brand-header {
    margin-bottom: 40px;
}

.brand-logo-container {
    margin-bottom: 16px;
}

.brand-logo {
    height: 36px;
    width: auto;
}

.main-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.2;
}

.main-description {
    font-size: 1.15rem;
    color: #555;
    max-width: 1200px;
    margin-bottom: 30px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    background: #fff;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #4A74B6;
    border: 1.5px solid #4A74B6;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-btn:hover {
    background: #4A74B6;
    color: #fff;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.image-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.content-description {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 1200px;
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.cta-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: #fff;
    color: #4A74B6;
    border: 2px solid #4A74B6;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background: #4A74B6;
    color: #fff;
}

.cta-btn i {
    font-size: 1em;
}

/* Partners Section */
.partners-section {
    margin-bottom: 60px;
}

.partners-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.partners-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Footer */
.footer {
    background: #f8f9fb;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    padding-right: 40px;
}

/* key bit: place copyright in grid column 2 and align left */
.footer-copyright {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 16px;
    grid-column: 2 / span 3; 
    text-align: left;
    margin-top: -50px;

}


.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

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

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

.footer-column ul li a {
    color: #4A74B6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    text-decoration: underline;
    color: #3a5e96;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        padding: 60px 24px 40px 100px;
    }
    
    .logo-area {
        width: 70px;
    }
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        di
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-nav nav {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
    }
    
    .logo-area {
        position: relative;
        width: 100%;
        height: 80px;
        top: 0;
        left: 0;
    }
    
    .logo-area img {
        width: 48px;
        height: 48px;
    }
    
    .main-container {
        padding: 40px 20px;
    }
    
    .feature-grid,
    .image-gallery,
    .cta-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .footer-container {
        display: block;
        gap: 32px;
    }
    
    .partners-logos {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .top-nav-container {
        padding: 0 16px;
    }
    
    .main-container {
        padding: 30px 16px;
    }
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4b74b6;
    margin-bottom: 12px;
    text-align: left;
}
/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.about-card {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.about-card h3 {
    font-size: 1.0rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    white-space: nowrap;
}

.about-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
    min-height: 140px;
}

.about-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #4A74B6;
    border: 1.5px solid #4A74B6;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.about-btn:hover {
    background: #4A74B6;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.footer-copyright a{
    color: #4A74B6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

@media handheld, only screen and (max-width: 767px) {
  .desk {
    display: none !important;
  }
  .footer-copyright{ margin-top:10px !important }
  .feature-grid {display: flex; flex-wrap: wrap;}
}
@media handheld, only screen and (min-width: 767px) {
  .mob {
    display: none !important;
  }

}
.img-fluid {
    display: block;
    height: auto;
    max-width: 100%; margin: 0px auto 0px auto; position: relative;
}
