
.support-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
}

.support-card {
    width: 330px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    background: #fff;
}

/* Top Bar */
.support-card .top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.card-red { background: #c62828; }
.card-blue { background: #0b60a9; }
.card-gray { background: #424446; }

/* Middle White Strip */
.support-card .middle {
    background: #ffffff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #0a3967;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Bottom Section */
.support-card .bottom {
    padding: 18px;
    font-size: 15px;
    color: #ffffff;
    background: inherit;
}

/* Icons */
.support-card svg {
    width: 26px;
    height: 26px;
}

/* -------------------------------------------------
   BLUR-GRADIENT BAR SECTION
--------------------------------------------------- */

.excellence-section {
    text-align: center;
}

.excellence-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0e2d55;
    margin-bottom: 18px;
}

/* Blur Bar */
.blur-banner {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(30,70,120,0.4) 40%,
        rgba(30,70,120,0.6) 50%,
        rgba(30,70,120,0.4) 60%,
        rgba(255,255,255,0) 100%
    );

    backdrop-filter: blur(4px);
}
/* Bottom Section – now matches top background */
.support-card .bottom {
    padding: 18px;
    font-size: 15px;
    color: #ffffff;
    background: inherit;    /* ← THIS MAKES THE BOTTOM MATCH THE TOP COLOR */
    opacity: 0.95;
}
.support-cards {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 40px 0;
}

.card-top {
    padding:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#ffffff;
}


/* GRADIENT EXACT MATCH */
.card.red  .card-top { background: linear-gradient(#c92a2a, #b02020); }
.card.blue .card-top { background: linear-gradient(#0a66b7, #084f8e); }
.card.gray .card-top { background: linear-gradient(#434649, #2f3133); }

/* MIDDLE WHITE STRIP */
.card-middle {
    background: #ffffff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-middle .major {
    font-size: 20px;
    font-weight: 700;
    color: #0a3967;
}

/* BOTTOM SECTIONS – gradient like screenshot */
.card-bottom {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
}

/* GRADIENT SHADES MATCH EXACT */
.card.red  .card-bottom { background: linear-gradient(#d03838, #b52626); }
.card.blue .card-bottom { background: linear-gradient(#0c63b1, #09497f); }
.card.gray .card-bottom { background: linear-gradient(#3f4143, #303233); }

.icon {
    width: 22px;
}

.icon-sm {
    width: 14px;
}
/* RESPONSIVE FIX */
@media (max-width: 992px) {
    .support-cards {
        flex-wrap: wrap;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .card {
        width: 90% !important;
    }

    .support-cards {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .card {
        width: 100% !important;
        margin: 0 10px;
    }

    .card-top,
    .card-middle,
    .card-bottom {
        padding: 14px;
    }

    .card-middle .major {
        font-size: 18px;
    }

    .blur-banner {
        font-size: 14px;
        padding: 12px 20px;
    }

    .excellence-section h2 {
        font-size: 26px;
    }
}

            /* Add these CSS rules */
            .object-fit-cover {
               object-fit: cover;
            }
            /* SECTION */
        .project-section {
            padding: 40px 0;
            background: #fff;
            width: 100%;
            overflow-x: hidden;
        }
        
        /* CUSTOM CONTAINER */
        .project-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
            padding: 0 20px;
        }
        
        /* LEFT FORM */
        .project-form {
            width: 50%;
            flex-shrink: 0;
        }
        
        .project-form .label {
            color: #E47D27;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 12px;
            font-weight: 600;
            display: block;
            text-transform: uppercase;
        }
        
        .project-form h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1D4E89;
            line-height: 1.2;
        }
        
        .project-form input,
        .project-form select {
            width: 100%;
            padding: 16px 18px;
            margin-bottom: 20px;
            background: #fafafa;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .project-form input:focus,
        .project-form select:focus {
            outline: none;
            border-color: #1D4E89;
            box-shadow: 0 0 0 2px rgba(29, 78, 137, 0.1);
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #1D4E89;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .submit-btn:hover {
            background: #153a6d;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(29, 78, 137, 0.2);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        /* RIGHT IMAGE */
        .project-image {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .project-image img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        /* Tablet Responsive Styles (768px - 1024px) */
        @media (max-width: 1024px) {
            .project-container {
                max-width: 95%;
                gap: 40px;
            }
            
            .project-form h2 {
                font-size: 32px;
            }
            
            .project-form input,
            .project-form select {
                padding: 14px 16px;
                margin-bottom: 16px;
            }
            
            .submit-btn {
                padding: 16px;
            }
            
            .project-image img {
                max-height: 450px;
            }
        }
        
        /* Mobile Responsive Styles (max-width: 768px) */
        @media (max-width: 768px) {
            .project-section {
                padding: 40px 0;
            }
            
            .project-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
                padding: 0 15px;
            }
            
            .project-form,
            .project-image {
                width: 100% !important;
            }
            
            .project-form h2 {
                font-size: 28px;
                margin-bottom: 25px;
            }
            
            .project-form input,
            .project-form select {
                font-size: 16px;
                padding: 15px;
                margin-bottom: 15px;
            }
            
            .project-image img {
                width: 100%;
                max-height: 350px;
                border-radius: 6px;
            }
            
            .submit-btn {
                font-size: 15px;
                padding: 17px;
            }
            .title {
            margin-bottom: 10px !important;
            }
        }
        
        /* Small Mobile Styles (max-width: 480px) */
        @media (max-width: 480px) {
            .project-section {
                padding: 40px 0;
            }
            
            .project-container {
                gap: 30px;
            }
            
            .project-form h2 {
                font-size: 24px;
            }
            
            .project-form .label {
                font-size: 13px;
            }
            
            .project-form input,
            .project-form select {
                font-size: 15px;
                padding: 14px;
            }
            
            .submit-btn {
                font-size: 14px;
                padding: 16px;
            }
            
            .project-image img {
                max-height: 280px;
            }
        }
        
        /* Form Validation Styles */
        .error-message {
            color: #d32f2f;
            font-size: 14px;
            margin-top: -15px;
            margin-bottom: 15px;
            text-align: left;
            display: none;
        }
        
        .success-message {
            background-color: #4caf50;
            color: white;
            padding: 15px;
            border-radius: 6px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }
        
        /* Loading State */
        .loading {
            position: relative;
            pointer-events: none;
            opacity: 0.8;
        }
        
        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.8s linear infinite;
            transform: translate(-50%, -50%);
        }
        
        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        /* Fix for select dropdown on mobile */
        select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            padding-right: 40px !important;
        }
  

  /* index2 second code */ 
        /* White Theme Styles */
        .why-section {
            background-color: #ffffff;
            color: #333333;
            padding: 20px 0;
        }
         .why-section .title h2 {
            color: #1a1a1a;
        }
         .why-section .title .highlight {
            color: #0056b3;
        }
        /* Carousel Styles */
        .cards-carousel {
            position: relative;
            margin: 20px 0;
            overflow: hidden;
        }
       .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
            padding: 10px 0;
        }
        .carousel-container .card {
            flex: 0 0 calc(33.333% - 20px);
            min-width: calc(33.333% - 20px);
            margin: 0;
        }
        /* Card Styles - White Theme */
        .card {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            background:#fff;
        }
         .card.featured {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
            border: 1px solid #c2d9ff;
            color: #2d3748;
        }

         .icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background:#fff;
        }

       .icon svg {
            width: 30px;
            height: 30px;
            color: #0056b3;
        }
        .card-content h3 {
            color: #1a1a1a;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
         .card-content p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 0;
            text-justify: inter-word;
            hyphens: auto;
        }
        /* Carousel Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid #e9ecef;
            color: #0056b3;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        .carousel-btn:hover {
            background: #0056b3;
            color: white;
            border-color: #0056b3;
        }
        .carousel-dots {
            display: flex;
            gap: 10px;
        }
         .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e9ecef;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .dot.active {
            background: #0056b3;
            transform: scale(1.2);
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 16px;
            padding: 20px;
            margin-top: 10px;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        .cta-content h3 {
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        .btn-primary {
            background: #0056b3;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
       .btn-primary:hover {
            background: #004494;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,86,179,0.3);
        }
       /* Modal Styles */
        .modal-content {
            border-radius:16px;
            border: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .modal-header {
            border-bottom: 1px solid #e9ecef;
            background: #f8f9fa;
            border-radius: 16px 16px 0 0;
        }
        .modal-title {
            color: #1a1a1a !important;
            font-weight: 600;
        }
        .form-control {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 10px 15px;
        }
        .form-control:focus {
            border-color: #0056b3;
            box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
        }
        .form-label {
            color: #4a5568 !important;
            font-weight: 500;
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .carousel-container .card {
                flex: 0 0 calc(50% - 15px);
                min-width: calc(50% - 15px);
            }
        }
        @media (max-width: 768px) {
            .carousel-container .card {
                flex: 0 0 100%;
                min-width: 100%;
            }
            
            .why-section {
                padding: 10px 0;
            }
            
            .cta-section {
                padding: 20px 20px;
            }
        }
        
         /* Grid layout for featured card */
         .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .featured {
            margin-bottom: 10px;
        }

        .cards-carousel .card .icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;
        }

        .cards-carousel .card .icon svg {
            width: 50px;   /* adjust size if needed */
            height: 50px;
            display: block;
        }

    @media (max-width: 480px) {
      .industries-grid {
        grid-template-columns: 1fr;
      }
    }
    .testimonial-rating {
    margin-bottom: 10px;
    color: #ffc107;  /* gold color */
    font-size: 1.2rem;
    letter-spacing: 2px;
}
   