/* ===== 1. RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: url("https://www.transparenttextures.com/patterns/brick-wall-dark.png"),
        linear-gradient(135deg, #f4f6fa, #e9edf5);
    background-attachment: fixed;
    color: #1a1a1a;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== 2. TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 8vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 5vw, 2rem); }
p { font-size: clamp(0.9rem, 2vw, 1.1rem); }

/* ===== 3. LAYOUT UTILITIES ===== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.row > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

section {
    padding: 60px 0;
    z-index: 2;
}

@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 8vw, 40px);
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a2a66;
    letter-spacing: 1px;
    position: relative;
    padding: 0 15px;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #e30613;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 50px;
    }
    .section-title::after {
        width: 70px;
        height: 4px;
        margin: 15px auto 0;
    }
}

/* ===== 4. NAVIGATION ===== */
.glass-nav {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    max-width: 80%;
}

.navbar-brand img {
    height: 40px;
    transition: height 0.3s ease;
}

.navbar-brand span {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.2;
}

.navbar-nav .nav-link {
    color: #0a2a66 !important;
    transition: transform 0.35s ease, color 0.35s ease;
    display: inline-block;
    padding: 0.5rem 1rem !important;
}

.nav-item:hover .nav-link {
    transform: scale(1.1);
    color: #e30613 !important;
}

.navbar-nav .nav-link.active {
    color: #e30613 !important;
    font-weight: 700;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: #e30613;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .glass-nav {
        padding: 10px 0;
    }
    .navbar-brand span {
        font-size: 0.9rem;
    }
    .navbar-collapse {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        text-align: center;
        padding: 12px !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .navbar-nav .nav-link.active::after {
        width: 50%;
        left: 25%;
    }
}

/* ===== 5. HERO SECTION ===== */
.hero {
    min-height: 500px;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-image: url("Gemini_Generated_Image_dnqp95dnqp95dnqp.png");
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero h1 {
    font-size: clamp(28px, 8vw, 60px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 2rem;
}

/* ===== 6. CARD STYLES ===== */
.service-card, .portfolio-card {
    margin-bottom: 20px;
    height: auto;
    min-height: 250px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-icon {
    font-size: clamp(30px, 5vw, 40px);
    color: #0a2a66;
    margin-bottom: 15px;
    transition: transform 0.35s ease, color 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a2a66, #e30613);
    transition: width 0.35s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    color: #e30613;
}

.service-card h4 {
    color: #0a2a66;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: clamp(16px, 4vw, 20px);
}

.service-card p {
    color: #555;
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.6;
}

.glass-card-first {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-title {
    color: #0a2a66;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e30613;
    margin: 8px auto 0;
}

.about-text {
    color: #444444;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    text-align: center;
}

.brand-highlight {
    color: #e30613;
    font-weight: 600;
}

@media (min-width: 768px) {
    .glass-card {
        padding: 30px;
    }
}

.glow-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.6), rgba(0,102,255,0.3), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
}

.glow-card:hover::before {
    opacity: 1;
}

/* ===== 7. PORTFOLIO SECTION – FIXED ===== */
.portfolio-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.isotope-container {
    min-height: 400px;
    transition: height 0.3s ease;
}

.isotope-container::after {
    content: '';
    display: table;
    clear: both;
}

/* Ensure all portfolio items are visible */
.portfolio-item {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Force images to load with proper dimensions */
.portfolio-card img {
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: cover;
}

.isotope-filters {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.isotope-filters li {
    display: inline-block;
    padding: 8px 18px;
    cursor: pointer;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: clamp(12px, 3.5vw, 14px);
}

.isotope-filters li:hover {
    background: rgba(13, 110, 253, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.isotope-filters li.filter-active {
    background: #0d6efd;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.8);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 220px;
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .portfolio-card {
        height: 250px;
    }
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-overlay .preview-link {
    color: white;
    font-size: 1.5rem;
    background: rgba(13, 110, 253, 0.6);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portfolio-overlay .preview-link:hover {
    background: #0d6efd;
    transform: scale(1.1);
}

/* ===== 8. BUTTON STYLES ===== */
.neon-border-btn {
    position: relative;
    padding: 14px 36px;
    font-size: 18px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 40px;
}

.neon-border-btn span {
    position: relative;
    z-index: 2;
}

.neon-border-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff003c, #ffffff, #0066ff, #ff003c);
    background-size: 400%;
    z-index: 0;
    filter: blur(8px);
    animation: neonBorder 6s linear infinite;
    border-radius: 40px;
}

.neon-border-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(0,0,0,0.7);
    border-radius: 40px;
    z-index: 1;
}

@keyframes neonBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.whatsapp-btn, .email-btn {
    font-size: clamp(14px, 3.5vw, 16px);
    padding: 10px 20px;
    margin: 5px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.email-btn {
    background: linear-gradient(135deg, #0066ff, #0047ab);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 71, 171, 0.2);
}

.email-btn:hover {
    background: linear-gradient(135deg, #0052cc, #003580);
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.4);
    transform: translateY(-2px);
}

.email-btn:hover i {
    animation: fly 0.5s ease-in-out infinite alternate;
}

@keyframes fly {
    from { transform: translateX(0); }
    to { transform: translateX(3px); }
}

/* ===== 9. FORM STYLES ===== */
.form-control {
    font-size: clamp(14px, 4vw, 16px);
    padding: 10px 15px;
}

.neon-border-container {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 40px;
}

.neon-textarea {
    position: relative;
    width: 100%;
    padding: 12px 20px;
    font-size: clamp(14px, 4vw, 16px);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 30px;
    resize: vertical;
    z-index: 2;
}

.neon-textarea:focus {
    outline: none;
}

.neon-textarea::placeholder {
    color: white;
}

.neon-border-container::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff003c, #ffffff, #0066ff, #ff003c);
    background-size: 400%;
    z-index: 0;
    filter: blur(8px);
    animation: neonBorder 6s linear infinite;
    border-radius: 40px;
}

@media (min-width: 768px) {
    .neon-textarea {
        padding: 14px 36px;
        font-size: 18px;
        border-radius: 40px;
    }
}

/* ===== 10. TESTIMONIAL SECTION – FIXED OVERLAP ===== */
.testimonial {
    position: relative;
    z-index: 3;
    clear: both;
    margin-top: 80px;
    margin-bottom: 40px;
}

.testimonial .glass-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 850px;
    margin: auto;
    padding: 30px 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ffff;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: #e30613;
}

#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 5%;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-size: 70% 70%;
    filter: brightness(0) invert(1);
}

/* ===== 11. FOUNDERS SECTION ===== */
.founders {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(10, 42, 102, 0.7)), 
                url('https://unsplash.com/photos/ESZRBtkQ_f8/download?force=true');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 50px 15px;
    margin: 30px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    color: white;
}

@media (min-width: 768px) {
    .founders {
        padding: 80px 20px;
        margin: 40px auto;
        background-attachment: fixed;
    }
}

.founder-card h3 {
    font-size: clamp(20px, 6vw, 32px);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.founder-card p {
    font-size: clamp(14px, 4vw, 16px);
}

.founder-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .founder-card img {
        width: 150px;
        height: 150px;
    }
}

.founder-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    background: rgba(10, 42, 102, 0.1);
    color: #0a2a66;
    border: 1px solid #0a2a66;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-social:hover {
    color: #fff;
    background: #e30613;
    border-color: #e30613;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(227, 6, 19, 0.6);
}

@media (min-width: 768px) {
    .founder-social {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

/* ===== 12. LOCATION SECTION ===== */
.location-section {
    position: relative;
}

.location-heading {
    color: #0a2a66;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.location-subheading {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

.location-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 26px;
    box-shadow: 0 10px 30px rgba(10, 42, 102, 0.10);
    border: 1px solid rgba(10, 42, 102, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.location-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0a2a66, #e30613);
}

.location-badge {
    display: inline-block;
    background: rgba(227, 6, 19, 0.08);
    color: #e30613;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.location-card h3 {
    color: #0a2a66;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.location-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-item i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(10, 42, 102, 0.08);
    color: #0a2a66;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item h6 {
    margin: 0 0 4px;
    color: #0a2a66;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: #e30613;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.map-btn:hover {
    background: #0a2a66;
    color: #fff;
    transform: translateY(-2px);
}

.map-wrapper {
    height: 460px;
    border-radius: 22px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 35px rgba(10, 42, 102, 0.14);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
}

/* ===== 13. FOOTER STYLES ===== */
.footer {
    background-color: #05070c;
    color: #e5e9f0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.footer .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    padding: 70px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

[class*="col-"] {
    padding: 0 12px;
    margin-bottom: 30px;
}

.col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-lg-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sitename {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B9C8FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.footer-about .logo .mode-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(120deg, #f0f4ff, #bdd3ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cfddee;
}

.footer-contact strong {
    color: #ffffff;
    font-weight: 600;
}

.social-links {
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: #eef2ff;
    font-size: 1.2rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37,99,235,0.25);
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: -0.2px;
    color: #ffffff;
}

.footer-links h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #3b82f6;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li i {
    color: #3b82f6;
    font-size: 0.85rem;
}

.footer-links ul li a {
    color: #cbd5e6;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #60a5fa;
    padding-left: 4px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #b9c3d4;
    line-height: 1.5;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #14171f;
    border-radius: 60px;
    padding: 4px;
    border: 1px solid #2a2f3c;
    transition: all 0.2s;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    border-radius: 60px;
}

.newsletter-form input[type="email"]::placeholder {
    color: #7c88a1;
}

.newsletter-form input[type="submit"] {
    background: #2563eb;
    border: none;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.newsletter-form input[type="submit"]:hover {
    background: #1d4ed8;
    transform: scale(0.98);
}

.php-email-form .loading, .error-message, .sent-message {
    display: none;
    font-size: 0.75rem;
    margin-top: 8px;
}

.copyright {
    padding: 28px 0 32px;
    background-color: #05070c;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.copyright .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.copyright p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #9aa3b9;
}

.copyright .sitename {
    background: none;
    color: #e2e8ff;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.credits {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===== 14. RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .col-lg-4, .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .footer-links h4:after {
        width: 35px;
    }
}

@media (max-width: 768px) {
    .col-lg-4, .col-lg-2, .col-md-6, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .neon-border-btn, .whatsapp-btn, .email-btn {
        width: 100%;
        margin: 10px 0;
        padding: 15px;
    }
    
    .footer-top {
        text-align: center;
        padding: 40px 0;
    }
    .footer-links h4::after {
        margin: 10px auto;
    }
    .footer-about .logo {
        justify-content: center;
    }
    .footer-contact {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .newsletter-form {
        border-radius: 12px;
        max-width: 450px;
        margin: 0 auto;
    }
    .newsletter-form input[type="submit"] {
        width: 100%;
        margin-top: 10px;
    }
    
    .map-wrapper {
        min-height: 350px;
        height: 350px;
    }
    
    #core-values .card {
        border-radius: 15px !important;
        margin-bottom: 15px;
    }
    #core-values .row {
        flex-direction: column !important;
        margin-bottom: 20px !important;
    }
    #core-values .col-md-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .testimonial {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .tilt-card {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn, .email-btn {
        width: 100%;
        margin: 5px 0;
    }
    .whatsapp-btn i, .email-btn i {
        font-size: 1.2rem;
    }
}

/* ===== 15. UTILITY CLASSES ===== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #0d6efd;
    width: 0%;
    z-index: 9999;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

img, iframe, video {
    max-width: 100%;
    height: auto;
}

.demo-content {
    flex: 1;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(145deg, #eef2f5 0%, #ffffff 100%);
}

.demo-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e2a3e;
    margin-bottom: 1rem;
}

.demo-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.6;
}
/* Ensure portfolio items are always visible on mobile */
@media (max-width: 768px) {
    .isotope-container .portfolio-item {
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px;
    }
    .isotope-container {
        height: auto !important;
    }
}
/* Force Isotope container to respect height */
.isotope-container {
    position: relative;
    min-height: 500px;
    transition: height 0.3s ease;
}

.isotope-container:after {
    content: '';
    display: table;
    clear: both;
}

/* Ensure portfolio items don't overflow */
.portfolio-item {
    margin-bottom: 20px;
    float: left;
}

/* Testimonial section – strong separation */
.testimonial {
    clear: both;
    position: relative;
    z-index: 2;
    margin-top: 60px;
    display: block;
}

/* Contact section – clear above */
#contact {
    clear: both;
    position: relative;
    z-index: 2;
}

/* Footer – clear everything */
.footer {
    clear: both;
    position: relative;
    z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .isotope-container {
        min-height: auto;
    }
    .testimonial {
        margin-top: 30px;
    }
}
/* Simple Portfolio Filter - No Isotope */
.portfolio-filters-simple {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.portfolio-filters-simple li {
    display: inline-block;
    padding: 8px 18px;
    cursor: pointer;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: clamp(12px, 3.5vw, 14px);
}

.portfolio-filters-simple li:hover {
    background: rgba(13, 110, 253, 0.8);
    transform: translateY(-3px);
}

.portfolio-filters-simple li.filter-active {
    background: #0d6efd;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.8);
}

.portfolio-grid-simple {
    position: relative;
}

.portfolio-item-simple {
    transition: all 0.3s ease;
    display: block;
}

/* Hide filtered items */
.portfolio-item-simple.hide {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-item-simple {
        width: 100%;
    }
    .portfolio-filters-simple li {
        padding: 6px 12px;
        font-size: 12px;
    }
}
/* Simple Portfolio Filter - No Isotope */
.portfolio-filters-simple {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.portfolio-filters-simple li {
    display: inline-block;
    padding: 8px 18px;
    cursor: pointer;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: clamp(12px, 3.5vw, 14px);
}

.portfolio-filters-simple li:hover {
    background: rgba(13, 110, 253, 0.8);
    transform: translateY(-3px);
}

.portfolio-filters-simple li.filter-active {
    background: #0d6efd;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.8);
}

.portfolio-grid-simple {
    position: relative;
}

.portfolio-item-simple {
    transition: all 0.3s ease;
    display: block;
}

/* Hide filtered items */
.portfolio-item-simple.hide {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-item-simple {
        width: 100%;
    }
    .portfolio-filters-simple li {
        padding: 6px 12px;
        font-size: 12px;
    }
}
