/* Reset and Base Styles */
* {
    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-color: #fff;
}

/* Multi-language font support */
[data-lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

[data-lang="gu"] {
    font-family: 'Noto Sans Gujarati', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

[data-lang="ar"] {
    font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
}

[data-lang="zh"] {
    font-family: 'Noto Sans CJK SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

[data-lang="ja"] {
    font-family: 'Noto Sans CJK JP', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00338D;
    margin-bottom: 0.2rem;
}

.logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    margin-left: 3rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00338D;
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dropdown-section h3 {
    color: #00338D;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section ul li {
    margin-bottom: 0.7rem;
}

.dropdown-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-section ul li a:hover {
    color: #00338D;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn,
.contact-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.search-btn:hover,
.contact-btn:hover {
    color: #00338D;
}

.contact-btn {
    background: #00338D;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.contact-btn:hover {
    background: #002b75;
    color: white;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.language-btn:hover {
    color: #00338D;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .language-dropdown,
.language-dropdown.active,
.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    border: none;
    width: 100%;
}

.language-option:hover {
    background-color: #f5f5f5;
    color: #00338D;
}

.language-option.active {
    background-color: #00338D;
    color: white;
}

.language-option img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Slider Section */
.slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #00338D 0%, #0066CC 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.slider .slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    color: white;
    padding: 5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Overlay for better text readability */
.slider .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%);
    z-index: 1;
}

/* Animated overlay for active slides */
.slider .slide.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 2;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Utility classes for real images (add these classes to slides if you have real images) */
.slider .slide.with-image {
    background-image: none !important;
}

.slider .slide.with-image::before {
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.7) 0%, rgba(0, 102, 204, 0.6) 100%);
}

/* Example usage with real images */
.slider .slide.whatsapp-image {
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 141, 0.6) 0%, rgba(0, 102, 204, 0.5) 50%, rgba(25, 205, 25, 0.2) 100%), 
        url('images/whatsapp-bulk-messaging.jpg');
    background-blend-mode: multiply;
    background-size: cover, cover;
    background-position: center, center;
}

.slider .slide.sefish-image {
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 141, 0.65) 0%, rgba(0, 102, 204, 0.55) 50%, rgba(255, 69, 58, 0.25) 100%), 
        url('images/sefish-home-made.jpg');
    background-blend-mode: multiply;
    background-size: cover, cover;
    background-position: center, center;
}

.slider .slide.starclicks-image {
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 141, 0.60) 0%, rgba(0, 102, 204, 0.50) 30%, rgba(138, 43, 226, 0.35) 70%, rgba(255, 215, 0, 0.15) 100%), 
        url('images/star-clicks-fashion.jpg');
    background-blend-mode: multiply;
    background-size: cover, cover;
    background-position: center, center;
}

.slider .slide.banking-image {
    background-image: linear-gradient(135deg, rgba(0, 51, 141, 0.7) 0%, rgba(0, 102, 204, 0.6) 100%), url('path/to/your/banking-image.jpg');
    background-blend-mode: multiply;
}

.slider .slide.tech-image {
    background-image: linear-gradient(135deg, rgba(0, 51, 141, 0.7) 0%, rgba(0, 102, 204, 0.6) 100%), url('path/to/your/tech-image.jpg');
    background-blend-mode: overlay;
}

.slider .slide.sustainability-image {
    background-image: linear-gradient(135deg, rgba(0, 51, 141, 0.7) 0%, rgba(0, 102, 204, 0.6) 100%), url('path/to/your/sustainability-image.jpg');
    background-blend-mode: soft-light;
}

/* Individual slide backgrounds with blend modes */
.slider .slide:nth-child(1) {
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 141, 0.75) 0%, rgba(0, 102, 204, 0.65) 50%, rgba(25, 205, 25, 0.3) 100%), 
        radial-gradient(circle at 30% 70%, rgba(25, 205, 25, 0.2) 0%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="whatsapp-bg" patternUnits="userSpaceOnUse" width="200" height="200" patternTransform="rotate(15)"><rect width="200" height="200" fill="%23f0f9f0"/><circle cx="50" cy="50" r="3" fill="%2325cd25" opacity="0.3"/><circle cx="150" cy="100" r="2" fill="%2325cd25" opacity="0.4"/><circle cx="100" cy="150" r="4" fill="%2325cd25" opacity="0.2"/><path d="M20 20Q40 10 60 20T100 20" stroke="%2325cd25" stroke-width="1" fill="none" opacity="0.3"/><path d="M120 120Q140 110 160 120T200 120" stroke="%2325cd25" stroke-width="1" fill="none" opacity="0.3"/></pattern></defs><rect width="1200" height="800" fill="url(%23whatsapp-bg)"/><g fill="%2325cd25" opacity="0.1"><rect x="100" y="200" width="300" height="100" rx="20" transform="rotate(-5 250 250)"/><rect x="500" y="150" width="250" height="80" rx="15" transform="rotate(8 625 190)"/><rect x="200" y="400" width="400" height="120" rx="25" transform="rotate(-3 400 460)"/><circle cx="800" cy="200" r="60" opacity="0.15"/><circle cx="300" cy="600" r="80" opacity="0.12"/><circle cx="900" cy="500" r="50" opacity="0.18"/></g></svg>');
    background-blend-mode: multiply, color-burn, normal;
    background-size: cover, 300% 300%, cover;
    background-position: center, 20% 80%, center;
}

.slider .slide:nth-child(2) {
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 141, 0.75) 0%, rgba(0, 102, 204, 0.65) 50%, rgba(255, 69, 58, 0.3) 100%), 
        radial-gradient(circle at 70% 30%, rgba(255, 69, 58, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="food-bg" patternUnits="userSpaceOnUse" width="150" height="150" patternTransform="rotate(20)"><rect width="150" height="150" fill="%23fff5f5"/><circle cx="30" cy="30" r="4" fill="%23ff6b6b" opacity="0.3"/><circle cx="120" cy="80" r="3" fill="%23ff8cc8" opacity="0.4"/><circle cx="75" cy="120" r="5" fill="%23ffa8a8" opacity="0.2"/><path d="M20 40Q40 30 60 40T100 40" stroke="%23ff6b6b" stroke-width="2" fill="none" opacity="0.4"/><path d="M80 100Q100 90 120 100T160 100" stroke="%23ffa8a8" stroke-width="2" fill="none" opacity="0.3"/></pattern></defs><rect width="1200" height="800" fill="url(%23food-bg)"/><g fill="%23ff6b6b" opacity="0.1"><ellipse cx="200" cy="300" rx="150" ry="80" transform="rotate(-10 200 300)"/><ellipse cx="600" cy="200" rx="120" ry="60" transform="rotate(15 600 200)"/><ellipse cx="400" cy="500" rx="180" ry="90" transform="rotate(-5 400 500)"/><circle cx="800" cy="350" r="70" opacity="0.15"/><circle cx="300" cy="150" r="50" opacity="0.12"/><circle cx="900" cy="600" r="60" opacity="0.18"/></g></svg>');
    background-blend-mode: multiply, color-burn, overlay, normal;
    background-size: cover, 200% 200%, cover, cover;
    background-position: center, 30% 70%, center, center;
}

.slider .slide:nth-child(3) {
    background-image: 
        linear-gradient(135deg, rgba(0, 51, 141, 0.70) 0%, rgba(0, 102, 204, 0.60) 30%, rgba(138, 43, 226, 0.40) 70%, rgba(255, 215, 0, 0.20) 100%), 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(138, 43, 226, 0.25) 0%, transparent 60%),
        linear-gradient(45deg, #8a2be2 0%, #9932cc 30%, #ba55d3 60%, #dda0dd 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23663399"/><circle cx="20" cy="20" r="1" fill="%23ffd700" opacity="0.8"/><circle cx="70" cy="30" r="0.5" fill="%23ffd700" opacity="0.6"/><circle cx="40" cy="60" r="1.5" fill="%23ffd700" opacity="0.9"/><circle cx="80" cy="80" r="0.8" fill="%23ffd700" opacity="0.7"/><circle cx="10" cy="90" r="0.3" fill="%23ffd700" opacity="0.5"/><path d="M50 10L52 16L58 16L53 20L55 26L50 22L45 26L47 20L42 16L48 16Z" fill="%23ffd700" opacity="0.4"/></pattern></defs><rect width="1200" height="800" fill="url(%23stars)"/><g fill="%239932cc" opacity="0.15"><circle cx="300" cy="200" r="80" transform="rotate(-15 300 200)"/><circle cx="800" cy="300" r="100" transform="rotate(20 800 300)"/><circle cx="500" cy="500" r="60" transform="rotate(-10 500 500)"/><ellipse cx="200" cy="600" rx="120" ry="60" transform="rotate(25 200 600)"/><ellipse cx="900" cy="150" rx="90" ry="45" transform="rotate(-20 900 150)"/></g></svg>');
    background-blend-mode: multiply, screen, overlay, color-burn, normal;
    background-size: cover, 300% 300%, 250% 250%, cover, cover;
    background-position: center, 80% 20%, 20% 80%, center, center;
}

.slider .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
}

.slider-content {
    padding-left: 2rem;
    z-index: 3;
    position: relative;
}

.slider-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInFromLeft 0.8s ease-out;
}

.slider-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInFromLeft 0.8s ease-out 0.2s both;
}

.cta-button {
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

.cta-button {
    background: white;
    color: #00338D;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10%;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-submit,
.search-close {
    background: #00338D;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.search-message {
    color: #666;
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.insights-section {
    margin-bottom: 4rem;
}

.insights-section h2 {
    font-size: 2.5rem;
    color: #00338D;
    margin-bottom: 2rem;
    text-align: center;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, #00338D, #0066CC);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: white;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    color: #00338D;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #00338D;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #00338D;
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item h3 {
    font-size: 1.5rem;
    color: #00338D;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .contact-btn span {
        display: none;
    }
    
    .language-btn span {
        display: none;
    }
    
    .language-dropdown {
        min-width: 150px;
    }
    
    .slider .slide {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .slider-content {
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .slider-text h1 {
        font-size: 2rem;
    }
    
    .slider-text p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dropdown-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 2rem;
        transform: translateX(-100%);
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slider-text h1 {
        font-size: 1.5rem;
    }
    
    .insights-section h2,
    .services-section h2 {
        font-size: 2rem;
    }
    
    .card-content,
    .service-item {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading message for language switching */
.loading-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 51, 141, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}
