* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    position: relative;
}

/* Watermark Background */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

main, nav, footer, section {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0f2340 0%, #1a3a52 50%, #2d5a7b 100%) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.3));
}

.navbar-logo {
    height: 45px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
}

.brand-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffc107 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f2340 0%, #1a3a52 50%, #2d5a7b 100%);
    color: white;
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    margin-bottom: 40px;
    animation: slideInDown 0.8s ease-out;
}

.hero-logo-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(255, 193, 7, 0.3));
    transition: all 0.3s ease;
    animation: floatUp 3s ease-in-out infinite;
}

.hero-logo-img:hover {
    filter: drop-shadow(0 12px 30px rgba(255, 193, 7, 0.5));
    transform: scale(1.05);
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: slideInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero .btn {
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #0f2340 !important;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero .btn:hover {
    background: linear-gradient(135deg, #ffb300, #ff7500);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f2340;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    margin: 20px auto 0;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.intro-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    animation: fadeInUp 0.8s ease-out;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.05), transparent);
    transition: left 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ffc107, #ff8c00);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.service-card h4 {
    color: #0f2340;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover h4 {
    color: #ff8c00;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(255, 193, 7, 0.4));
}

/* About Section */
.about-section {
    background: white;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.mv-box {
    background: linear-gradient(135deg, #0f2340 0%, #1a3a52 100%);
    color: white;
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 35, 64, 0.15);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.mv-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.mv-box:hover::before {
    top: -25%;
    right: -25%;
}

.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

.mv-box h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #ffc107;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.mv-box p {
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* About Content */
.about-content {
    margin-top: 60px;
    line-height: 2;
}

.about-content h3 {
    color: #0f2340;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.about-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ffc107, #ff8c00);
    border-radius: 3px;
}

.about-content p {
    color: #666;
    font-size: 1.05rem;
}

/* Why Choose Us */
.why-list {
    list-style: none;
}

.why-list li {
    padding: 18px 0;
    padding-left: 45px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.internship-section {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 35, 64, 0.08);
    border: 1px solid rgba(15, 35, 64, 0.08);
}

.internship-apply-box {
    margin-top: 30px;
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 140, 0, 0.04));
    border-radius: 18px;
    border: 1px solid rgba(255, 193, 7, 0.18);
}

.internship-cta-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f2340;
    line-height: 1.8;
}

.internship-cta-text a {
    color: #0f2340;
    text-decoration: underline;
    font-weight: 800;
}

.internship-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    color: #0f2340 !important;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 999px;
    border: none;
    box-shadow: 0 14px 32px rgba(255, 193, 7, 0.28);
    transition: all 0.3s ease;
}

.internship-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffb300, #ff7a00);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li:hover {
    padding-left: 55px;
    color: #0f2340;
}

.why-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.why-list li:hover::before {
    color: #ff8c00;
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f2340 0%, #1a3a52 25%, #2d5a7b 50%, #1a3a52 75%, #0f2340 100%);
    color: white;
    padding: 80px 0 30px;
    text-align: center;
    margin-top: 100px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #ffc107, #ff8c00, #ff6b35) 1;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,193,7,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    opacity: 0.15;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><circle cx="200" cy="50" r="40" fill="rgba(255,193,7,0.1)"/><circle cx="400" cy="80" r="30" fill="rgba(255,140,0,0.1)"/><circle cx="600" cy="40" r="35" fill="rgba(255,107,53,0.1)"/><circle cx="800" cy="70" r="25" fill="rgba(255,193,7,0.1)"/><circle cx="1000" cy="45" r="38" fill="rgba(255,140,0,0.1)"/><circle cx="1200" cy="65" r="32" fill="rgba(255,107,53,0.1)"/><circle cx="1400" cy="50" r="30" fill="rgba(255,193,7,0.1)"/></svg>') no-repeat bottom;
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-section {
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.15);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.02);
}

.footer-section:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15), inset 0 0 20px rgba(255, 193, 7, 0.03);
}

.footer-section h5 {
    color: #ffc107;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ff8c00, #ff6b35);
    border-radius: 2px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    padding: 12px 0;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.footer-section a:last-child {
    border-bottom: none;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff8c00, #ff6b35);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: #ffc107;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.footer-section p {
    margin-top: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 193, 7, 0.2);
    padding-top: 35px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.03), transparent, rgba(255, 193, 7, 0.03));
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer Social-like section styling */
.footer-section a[href*="mail"],
.footer-section a[href*="tel"] {
    font-weight: 600;
    padding: 15px 0;
    font-size: 1.05rem;
}

.footer-section a[href*="mail"]::after {
    content: ' ✉';
    color: #ffc107;
    margin-left: 8px;
}

.footer-section a[href*="tel"]::after {
    content: ' ☎';
    color: #ff8c00;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-grid {
        gap: 35px;
    }
    
    .service-card {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    body::before {
        width: 600px;
        height: 600px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        margin-bottom: 30px;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .section-title::after {
        width: 80px;
        height: 4px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .nav-link {
        margin: 10px 0;
        padding: 10px 0;
    }
    
    .navbar-brand {
        gap: 10px;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .mission-vision {
        gap: 25px;
    }
    
    .mv-box {
        padding: 40px 25px;
    }
    
    .mv-box h4 {
        font-size: 1.4rem;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-section {
        padding: 25px;
    }
    
    .footer-section h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body::before {
        width: 500px;
        height: 500px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-logo {
        margin-bottom: 25px;
    }
    
    .hero-logo-img {
        max-width: 150px;
    }
    
    .hero .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 70px;
        height: 3px;
        margin: 15px auto 0;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 25px;
        border-radius: 12px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-brand {
        gap: 8px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .brand-text {
        font-size: 0.95rem;
        display: none;
    }
    
    .nav-link {
        margin: 8px 0;
        font-size: 0.95rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .mv-box {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .mv-box h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .mv-box p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-content {
        margin-top: 40px;
        line-height: 1.8;
    }
    
    .about-content h3 {
        font-size: 1.2rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .why-list li {
        padding: 12px 0;
        padding-left: 35px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    }
    
    .why-list li:hover {
        padding-left: 40px;
    }
    
    .why-list li::before {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 50px 0 20px;
        margin-top: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        padding: 20px;
        border-radius: 10px;
    }
    
    .footer-section h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
        margin-top: 30px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .hero-logo-img {
        max-width: 1
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .intro-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .services-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 20px;
        border-radius: 10px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.5rem;
        border: none;
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .brand-text {
        display: none;
    }
    
    .nav-link {
        margin: 5px 0;
        font-size: 0.9rem;
    }
    
    .mission-vision {
        gap: 15px;
    }
    
    .mv-box {
        padding: 25px 15px;
        border-radius: 10px;
    }
    
    .mv-box h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .mv-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-content {
        margin-top: 30px;
    }
    
    .about-content h3 {
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
    
    .why-list li {
        padding: 10px 0;
        padding-left: 30px;
        font-size: 0.9rem;
    }
    
    .why-list li:hover {
        padding-left: 35px;
    }
    
    .footer {
        padding: 40px 0 15px;
        margin-top: 60px;
    }
    
    .footer::before {
        height: 200px;
    }
    
    .footer::after {
        height: 150px;
    }
    
    .footer-content {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .footer-section {
        padding: 15px;
        border-radius: 8px;
    }
    
    .footer-section h5 {
        font-size: 0.9rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .footer-section a {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-top: 10px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 400px) {
    body::before {
        width: 300px;
        height: 300px;
        opacity: 0.04;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .hero-logo-img {
        max-width: 100px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .service-card h4 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .mv-box {
        padding: 20px 12px;
    }
    
    .mv-box h4 {
        font-size: 1rem;
    }
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    display: inline-block;
}

.brand-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffc107 !important;
    text-shadow: 0 0 10px rgba(255,193,7,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero .btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    background-color: #ffc107;
    color: #1a3a52 !important;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.hero .btn:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,193,7,0.4);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3a52;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    margin: 15px auto 0;
}

.intro-section {
    background: #f8f9fa;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffc107;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 193, 7, 0.05);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h4 {
    color: #1a3a52;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    background: white;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mv-box {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mv-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffc107;
}

.mv-box p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Team/About Content */
.about-content {
    margin-top: 50px;
    line-height: 1.9;
}

.about-content h3 {
    color: #1a3a52;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-content p {
    color: #666;
    font-size: 1.05rem;
}

/* Why Choose Us */
.why-choose {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
    margin-top: 40px;
}

.why-choose h3 {
    color: #1a3a52;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 50px 0 20px;
    text-align: center;
    margin-top: 80px;
    border-top: 4px solid #ffc107;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h5 {
    color: #ffc107;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffc107;
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
