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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

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

.nav-logo h1 {
    color: #000;
    font-weight: 700;
    text-transform: uppercase
}


.nav-logo  a{
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
        text-decoration:none;
}
.nav-logo img{ height: 60px; width: auto; vertical-align: middle;margin-right: 10px}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 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: #8B4513;
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 280px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url("images/banner-1.jpg")
        
}

/* Banner Animation */
.hero-banner {
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    background: #8B4513;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    z-index: 1;
}

.banner-text {
    display: flex;
    white-space: nowrap;
    animation: scroll-banner 30s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-text span {
    margin-right: 4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;border: 1px solid #ccc;
    padding: 20px
    
}

.hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

.btn-primary {
    background: #b61c01;
    color: white;
}

.btn-primary:hover {
    background: #704010;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
    background: #b61c01;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #b61c01;
    border: 2px solid #8B4513;
}

.btn-outline:hover {
    background: #8B4513;
    color: white;
}

/* Overview Section */
.overview {
    padding: 20px 0;
    background: white;
}

.overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.overview-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

/* Highlights Section */
.highlights {
    padding: 45px 0;
    background: #f8f9fa;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.highlight-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #704010;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B4513 0%, #704010 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    background-image: url("images/inner-banner-1.jpg");
    background-repeat: no-repeat;background-attachment: fixed;background-size: cover;background-position: bottom center;
    min-height: 40vh
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Why Us Content */
.why-us-content {
    padding: 30px 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

/* Expertise Content */
.expertise-content {
    padding: 30px 0;
}

.expertise-section {
    margin-bottom: 4rem;
}

.expertise-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cert-badge {
    font-size: 3rem;
    flex-shrink: 0;
}

.cert-content h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cert-content p {
    color: #666;
    font-size: 1.1rem;
}

.cert-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

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

.cert-details ul {
    list-style: none;
    padding-left: 0;
}

.cert-details li {
    margin-bottom: 0.5rem;
    color: #666;
}

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

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

.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diff-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.diff-card p {
    color: #666;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

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

.software-card {
/*    background: white;*/ 
/*    background: #09baca;*/
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
}

.software-card h4 {
/*    color: #333;*/
    color: #00374e;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.software-card p {
   color: #666;
/*     color: #fff;*/
}


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

.software-n-card {
/*    background: white;*/ 
/*    background: #09baca;*/
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
}

.software-n-card h4 {
/*    color: #333;*/
    color: #00374e;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.software-n-card p {
   color: #666;
/*     color: #fff;*/
}


.closing-statement {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.closing-statement h2 {
    color: #333;
    margin-bottom: 1rem;
}

.closing-statement p {
    font-size: 1.1rem;
    color: #666;
}

/* Process Content */
.process-intro {
    padding: 20px 0;
    background: #f8f9fa;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 60px;
    width: 2px;
    height: calc(100% + 2rem);
    background: #e0e0e0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

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

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
}

.step-content li {
    color: #666;
    margin-bottom: 0.5rem;
}

.note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.quality-statement {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Additional Info */
.additional-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-section {
    margin-bottom: 4rem;
}

.info-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-section h3 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.info-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.large-project-features,
.confidentiality-features {
    margin-top: 2rem;
}

.feature-item,
.conf-item {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item h4,
.conf-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item p,
.conf-item p {
    color: #666;
    margin-bottom: 1rem;
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-item li {
    color: #666;
    margin-bottom: 0.3rem;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section li {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Contact Content */
.contact-content {
    padding: 20px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.3rem;
}

.free-consultation {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.free-consultation h3 {
    color: #333;
    margin-bottom: 1rem;
}

.free-consultation p {
    color: #666;
    margin-bottom: 1.5rem;
}

.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 2rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #e0e0e0;
}

.map-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
    text-align: center;
    background: #8B4513;
    color: white;
    padding: 2rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #8B4513;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #8B4513;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #8B4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.7;
}
.white-color{color:#ffffff !important;}
.white-color li,
.white-color p,
.white-color h6,
.white-color span{color:#ffffff !important;text-align:left;}
.text-left{text-align:left;}
.inner-banner-1{width:100%; height:auto;min-height:300px; object-fit:cover; margin-top:70px;}
/* Responsive Design */
@media (max-width: 768px) {
    .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-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-banner {
        top: 70px;
    }

    .banner-text {
        font-size: 0.8rem;
    }

    .banner-text span {
        margin-right: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .highlights-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
    .highlight-card,
    .feature-card,
    .diff-card,
    .software-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }
     .software-n-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .highlight-card:nth-child(2) { animation-delay: 0.1s; }
    .highlight-card:nth-child(3) { animation-delay: 0.2s; }
    .highlight-card:nth-child(4) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .banner-text {
        animation: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-banner,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

.bullet-1 ul{margin: 10px 0px 10px 16px;padding: 0px; font-size: 14px;}

.card-icon img{height: 80px; width: auto;}

.bullet-2 ul{margin: 10px 0px 10px 16px;padding: 0px;     font-size: 1.1rem;
    line-height: 1.8;
    color: #666;}


.gallery-section{    margin-top: 30px;}
    .gallery-section h2{
            color: #333;
    margin-bottom: 1rem;
        font-size: 1.5rem;
    }

        .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-evenly;
    }

    .gallery img {
         width: 220px;
    height: 170px;
      object-fit: cover;
      border: 2px solid #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      cursor: pointer;
      transition: transform 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Lightbox styles */
    .lightbox-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .lightbox-overlay img {
       
      max-height: 80%;
      object-fit: contain;
      border: 1px solid black;
      box-shadow: 0 0 10px 0px rgba(255, 255, 255, 0.6);
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 35px;
      color: white;
      cursor: pointer;
      background: rgba(0,0,0,0.5);
      padding: 5px 10px;
      border-radius: 5px;
    }

    .lightbox-close:hover {
      background: red;
    }


    @media screen and (max-width:830px) {
        .lightbox-overlay img {
    max-width: 90%;}
    }
    
    @media screen and (max-width:600px) {
     .gallery img {
    width: 335px;}
    }
