     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1e293b;
            scroll-behavior: smooth;

        
        }

        /* Variables */
        :root {
            --primary: #1e4a76;
            --primary-dark: #0f3b5c;
            --secondary: #eab308;
            --secondary-dark: #ca8a04;
            --gray-light: #f8fafc;
            --gray: #64748b;
            --white: #ffffff;
            --shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        }



        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--secondary);
            color: #1e293b;
        }

        .btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            padding: 8rem 0 5rem;
            margin-top: 70px;
        }

        .hero-content {
           position: absolute;
           top: 50%;
           left: 5%;
           transform: translateY(-50%);
           color: white;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat-item h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
        }

        /* Hero Carousel Styles */
        .hero-carousel {
            position: relative;
            width: 100%;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .carousel-container {
            position: relative;
            width: 70%;
            overflow: hidden;
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            min-height: 380px;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 320px;
        }

        .carousel-slide i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .carousel-slide h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .carousel-slide p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 15px;
        }

        .next-btn {
            right: 15px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--secondary);
            width: 30px;
            border-radius: 5px;
        }

        .carousel-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: var(--secondary);
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--primary);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

     /* Services Grid - Enhanced Attractive Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    /* Enhanced multi-layered shadow for depth */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08),
                0 8px 10px -6px rgba(0, 0, 0, 0.02),
                0 0 0 1px rgba(234, 179, 8, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0px);
}

/* Decorative top border accent */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Subtle corner glow effect */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    /* Updated hover shadow with your brand color */
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(30, 74, 118, 0.25),
                0 4px 12px rgba(30, 74, 118, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(30, 74, 118, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 6px 12px rgba(30, 74, 118, 0.3));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}

/* Underline effect on h3 hover */
.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 40px;
}

.service-card ul {
    list-style: none;
    margin-top: 1.2rem;
    text-align: left;
}

.service-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.25s ease;
    border-radius: 0.5rem;
}

.service-card ul li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

/* Hover effect for list items */
.service-card ul li:hover {
    transform: translateX(5px);
    color: var(--primary);
    background: linear-gradient(90deg, rgba(30, 74, 118, 0.05), transparent);
    padding-left: 2rem;
}

.service-card ul li:hover:before {
    transform: scale(1.1);
    color: var(--secondary-dark);
}

/* Optional: Add a subtle gradient border on hover */
@keyframes borderPulse {
    0% { border-color: rgba(234, 179, 8, 0.1); }
    100% { border-color: rgba(234, 179, 8, 0.3); }
}

/* Glass morphism effect option (can be toggled) */
.service-card.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        font-size: 2.8rem;
    }
}

/* Optional: Loading animation for cards */
.service-card {
    animation: fadeInUp 0.5s ease backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




        /* Industries Grid */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .industry-item {
            background: var(--gray-light);
            padding: 1.5rem;
            text-align: center;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .industry-item:hover {
            background: var(--secondary);
            color: var(--primary-dark);
            transform: scale(1.05);
        }

        /* Projects */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .project-image {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .project-tag {
            display: inline-block;
            background: var(--secondary);
            padding: 0.2rem 0.8rem;
            border-radius: 0.25rem;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

        /* Contact Form */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            background: var(--primary);
            color: var(--white);
            padding: 2rem;
            border-radius: 1rem;
        }

        .contact-info i {
            margin-right: 1rem;
            color: var(--secondary);
        }

        .contact-info p {
            margin: 1rem 0;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-family: inherit;
        }

        .contact-form textarea {
            resize: vertical;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                box-shadow: var(--shadow);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-carousel {
                margin-top: 2rem;
                min-height: 350px;
            }
            
            .carousel-container {
                min-height: 280px;
                height:100%;
                padding: 0;
                overflow: hidden;
            }
            
            .carousel-slide {
                min-height: 280px;
                padding: 1.5rem;
        
            }
            
            .carousel-slide i {
                font-size: 3rem; 
               
            }
            
            .carousel-slide h3 {
                font-size: 1.2rem;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        .about-content {
            display: grid;
            gap: 4rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .about-text {
            animation: fadeInLeft 0.8s ease-out; 
        }
        .about-text h3 {
            font-size: 200%;
            color: orgba(30, 73, 118, 0.8);
            margin-bottom: 1rem;
            font-weight: 700;
        }
         .about-text .highlight {
            color: var(--secondary);
            font-weight: 600;
        }

        .class-container h3{
            font-size: 200%;
            margin-bottom: 0.5rem;
            color: orgba(30, 73, 118, 0.8);
        }

        .highlight{
            color: #eab308;
            
        }

        .hero-carousel{
            width: 100%;
            max-width: 650px;
        }

        .carousel-slide img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-container{
            height: 400px;
            overflow: hidden;
        }

        /* ========== REDESIGNED ABOUT SECTION - MODERN & ATTRACTIVE ========== */
        .about-redesign {
            background: linear-gradient(120deg, #ffffff 0%, #fefce8 100%);
            position: relative;
            overflow: hidden;
        }
        .about-redesign::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 10% 20%, rgba(234, 179, 8, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .about-left-modern {
            animation: fadeSlideUp 0.6s ease-out;
        }
        .about-badge {
            display: inline-block;
            background: rgba(234, 179, 8, 0.12);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: #b45309;
            margin-bottom: 1.2rem;
            backdrop-filter: blur(2px);
        }
        .about-left-modern h2 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #1e4a76 0%, #2c628c 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        .since-gold {
            color: var(--secondary-dark);
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
            padding-bottom: 2px;
        }
        .about-stats-row {
            display: flex;
            gap: 1.8rem;
            margin: 1.8rem 0 1.5rem;
            flex-wrap: wrap;
        }
        .stat-chip {
            background: white;
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border: 1px solid rgba(234, 179, 8, 0.25);
        }
        .stat-chip span {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-right: 0.5rem;
        }
        .about-description p {
            color: #334155;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .signature-modern {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1.5rem;
        }
        .signature-modern i {
            font-size: 2.2rem;
            color: var(--secondary);
            opacity: 0.8;
        }
        .about-right-modern {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
        }
        .insight-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.4rem 1.6rem;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.05);
            transition: all 0.25s ease;
            border: 1px solid rgba(234, 179, 8, 0.1);
        }
        .insight-card:hover {
            transform: translateY(-4px);
            border-color: var(--secondary);
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
        }
        .card-flex {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .card-icon {
            background: rgba(234, 179, 8, 0.1);
            border-radius: 1rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--secondary);
        }
        .card-text h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }
        .card-text p {
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.8rem;
        }
        .pill-mini {
            background: #f1f5f9;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #1e4a76;
        }
        .core-ring {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .core-item {
            text-align: center;
            flex: 1;
            background: rgba(30, 74, 118, 0.02);
            padding: 0.8rem 0.2rem;
            border-radius: 1rem;
        }
        .core-item i {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 0.4rem;
        }
        .core-item h4 {
            font-size: 0.8rem;
            font-weight: 700;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 992px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .about-left-modern h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 640px) {
            .about-stats-row {
                gap: 0.8rem;
            }
            .core-ring {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        .about-tittle{
            text-align:center;
            padding: 30px;
            margin: 20px;
            font-weight: 50px;
        }







        
        /* ========== REDESIGNED ABOUT SECTION - MODERN & ATTRACTIVE ========== */








.about-alt-design {
    padding: 80px 20px;
    background: #f9fafc;
}

.experience-banner {
    text-align: center;
    margin-bottom: 50px;
}

.experience-banner h1 {
    font-size: 80px;
    color: #ff6b00;
    margin: 0;
}

.experience-banner p {
    font-size: 18px;
    color: #555;
}

.about-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mini-heading {
    color: #ff6b00;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-alt-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-alt-left p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.discover-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.discover-btn:hover {
    background: #e55a00;
}

.feature-box {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media(max-width: 768px) {
    .about-alt-grid {
        grid-template-columns: 1fr;
    }

    .experience-banner h1 {
        font-size: 50px;
    }
}









        .about-redesign {
            background: linear-gradient(120deg, #ffffff 0%, #fefce8 100%);
            position: relative;
            overflow: hidden;
            padding: 5rem 0;
        }
        .about-redesign::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 10% 20%, rgba(234, 179, 8, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Section Title Styling */
        .about-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .about-badge {
            display: inline-block;
            background: rgba(234, 179, 8, 0.12);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #b45309;
            margin-bottom: 1rem;
            backdrop-filter: blur(2px);
        }
        .about-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e4a76 0%, #2c628c 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }
        .about-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Two Column Layout for Top Content */
        .about-top-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: start;
        }

        /* Left Column - Main Story */
        .about-left-modern {
            animation: fadeSlideUp 0.6s ease-out;
        }
        .about-description p {
            color: #334155;
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .about-description strong {
            color: var(--primary);
            font-weight: 700;
        }
        .signature-modern {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1.5rem;
        }
        .signature-modern i {
            font-size: 2rem;
            color: var(--secondary);
            opacity: 0.8;
        }
        .signature-modern span {
            font-weight: 500;
            font-style: italic;
            color: #475569;
        }

        /* Right Column - Stats Chips */
        .about-stats-row {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        .stat-chip {
            background: white;
            padding: 0.7rem 1.5rem;
            border-radius: 60px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(234, 179, 8, 0.25);
            transition: transform 0.2s;
        }
        .stat-chip:hover {
            transform: translateY(-2px);
            border-color: var(--secondary);
        }
        .stat-chip span {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            margin-right: 0.5rem;
        }
        .stat-chip .stat-label {
            font-weight: 500;
            color: #4b5563;
        }
        .right-quote {
            background: rgba(30, 74, 118, 0.03);
            padding: 1.2rem;
            border-radius: 1rem;
            border-left: 3px solid var(--secondary);
            margin-top: 1rem;
        }
        .right-quote p {
            font-size: 0.95rem;
            color: #475569;
            font-style: italic;
        }

        /* Bottom Cards - Side by Side */
        .about-bottom-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .insight-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(234, 179, 8, 0.1);
        }
        .insight-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.12);
        }
        .card-flex {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }
        .card-icon {
            background: rgba(234, 179, 8, 0.12);
            border-radius: 1rem;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--secondary);
            flex-shrink: 0;
        }
        .card-text h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .card-text p {
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0.8rem;
        }
        .pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.5rem;
        }
        .pill-mini {
            background: #f1f5f9;
            padding: 0.25rem 0.9rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #1e4a76;
            transition: all 0.2s;
        }
        .pill-mini i {
            margin-right: 0.3rem;
            font-size: 0.65rem;
            color: var(--secondary);
        }
        .pill-mini:hover {
            background: var(--secondary);
            color: #0f172a;
        }

        /* Core Values Row (below cards) */
        .core-ring {
            display: flex;
            justify-content: space-between;
            gap: 1.2rem;
            margin-top: 2rem;
            background: rgba(30, 74, 118, 0.02);
            padding: 1.2rem 1rem;
            border-radius: 1.5rem;
        }
        .core-item {
            text-align: center;
            flex: 1;
            padding: 0.5rem 0.2rem;
            border-radius: 1rem;
            transition: all 0.2s;
        }
        .core-item i {
            font-size: 1.6rem;
            color: var(--secondary);
            margin-bottom: 0.4rem;
        }
        .core-item h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
        }
        .core-item p {
            font-size: 0.7rem;
            color: #64748b;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-top-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .about-bottom-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .about-title {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 640px) {
            .container {
                padding: 0 1.5rem;
            }
            .about-stats-row {
                justify-content: center;
            }
            .core-ring {
                flex-direction: column;
                gap: 0.8rem;
            }
            .card-flex {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .pill-group {
                justify-content: center;
            }
            .signature-modern {
                flex-direction: column;
                text-align: center;
            }
        }





        
   .about-alt-design {
    padding: 80px 20px;
    background: #f9fafc;
}

.experience-banner {
    text-align: center;
    margin-bottom: 50px;
}

.experience-banner h1 {
    font-size: 80px;
    color: #ff6b00;
    margin: 0;
}

.experience-banner p {
    font-size: 18px;
    color: #555;
}

.about-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mini-heading {
    color: #ff6b00;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-alt-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-alt-left p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.discover-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.discover-btn:hover {
    background: #e55a00;
}

.feature-box {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media(max-width: 768px) {
    .about-alt-grid {
        grid-template-columns: 1fr;
    }

    .experience-banner h1 {
        font-size: 50px;
    }
}



        /* ===============================service ka fabrication==================================== */
    


/*   Container */
.container {
    max-width: 1200px;
    margin: auto;
} 


/* Section */
.service-page {
    padding: 80px 20px;
}

/* Header */
.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h1 {
    font-size: 42px;
    color: #0f3b5c;
    margin-bottom: 10px;
    position: relative;
}

.service-header h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background:#0f3b5c;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}

.service-header p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    color: #666;
}

/* Content */
.service-content {
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Service List */
.service-list {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
}

.service-list h2 {
    margin-bottom: 20px;
    color: #0f3b5c;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.service-list li:hover {
    padding-left: 10px;
    color: #0f3b5c;
}

/* Benefits */
.service-benefits h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0f3b5c;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: #0f3b5c;
}

/* Industries */
.service-industries {
    margin-top: 50px;
    text-align: center;
}

.service-industries ul {
    list-style: none;
    padding: 0;
}

.service-industries li {
    display: inline-block;
    margin: 10px;
    padding: 10px 18px;
    background: white;
    border-radius: 30px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-industries li:hover {
    background: #0f3b5c;
    color: white;
}

/* CTA */
.service-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #0f3b5c, #0f3b5c);
    border-radius: 15px;
    color: white;
}

.service-cta h2 {
    margin-bottom: 10px;

}

.service-cta{
    margin: 60px 0; 
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}


.btn {
    display: inline-block;
    margin-top: 15px;
    background: white;
    color: #0f3b5c;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e6e6e6;
}




        /* ===============================service ka trunkey==================================== */





      
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* buttons & elements */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            cursor: pointer;
            border: none;
            background: none;
        }

        .btn-primary {
            background: #0a66b9;
            color: white;
            box-shadow: 0 4px 8px rgba(10,102,185,0.2);
        }

        .btn-primary:hover {
            background: #054a8c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10,102,185,0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: #0a66b9;
            border-color: white;
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(105deg, rgba(0,0,0,0.75) 0%, rgba(0,20,40,0.8) 100%), url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            max-width: 720px;
            color: white;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.9;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .hero {
                min-height: 70vh;
            }
        }

        /* Section common */
        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0f2b3d;
            position: relative;
        }
        .section-sub {
            color: #5a6e7c;
            max-width: 700px;
            margin-bottom: 48px;
            font-size: 1.05rem;
        }
        .text-center {
            text-align: center;
        }

        /* About section */
        .about-grid {
            display: flex;
            gap: 48px;
            align-items: center;
            flex-wrap: wrap;
        }
        .about-text {
            flex: 1.4;
        }
        .about-text p {
            font-size: 1.08rem;
            line-height: 1.6;
            color: #2c3e4e;
            margin-bottom: 20px;
        }
        .about-stats {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .stat-card {
            background: #f8fafc;
            padding: 24px 16px;
            border-radius: 24px;
            text-align: center;
            transition: all 0.25s;
            border: 1px solid #e9edf2;
        }
        .stat-card i {
            font-size: 2.4rem;
            color: #0a66b9;
            margin-bottom: 12px;
        }
        .stat-card h3 {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0a2b44;
        }
        @media (max-width: 900px) {
            .about-grid {
                flex-direction: column;
            }
        }

        /* Why choose us */
        .why-bg {
            background: #f4f9fe;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }
        .feature-card {
            background: white;
            padding: 32px 24px;
            border-radius: 28px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            border: 1px solid #eef2f8;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #cbdde9;
        }
        .feature-icon {
            background: #e9f0f9;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        .feature-icon i {
            font-size: 2.4rem;
            color: #0a66b9;
        }
        .feature-card h3 {
            font-size: 1.45rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .feature-card p {
            color: #4a5b6b;
        }

        /* Services Section (grid cards) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 16px;
        }
        .service-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #eef2f8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .service-card:hover {
            border-color: #0a66b9;
            transform: scale(1.02);
            box-shadow: 0 20px 25px -12px rgba(10,102,185,0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: #0a66b9;
            margin-bottom: 18px;
        }
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .service-card p {
            color: #5c6f82;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(115deg, #0a2b3e 0%, #0a4b6e 100%);
            color: white;
            text-align: center;
            border-radius: 48px;
            margin: 40px auto 80px;
            padding: 64px 40px;
        }
        .cta-section h2 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 32px;
            opacity: 0.9;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn-light {
            background: white;
            color: #0a4b6e;
            border: none;
        }
        .btn-light:hover {
            background: #eef4ff;
            transform: translateY(-3px);
        }
        .btn-transparent {
            background: transparent;
            border: 2px solid white;
            color: white;
        }
        .btn-transparent:hover {
            background: white;
            color: #0a4b6e;
        }

        /* no footer, no contact info — simple closing spacing */
        .page-end {
            height: 40px;
        }
        @media (max-width: 600px) {
            section {
                padding: 56px 0;
            }
            .cta-section {
                padding: 40px 20px;
                margin-bottom: 50px;
            }
        }





    
    

