/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0px;
    width: 110%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding:  20px;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Breadcrumb - Responsive */
.breadcrumb {
    background-image: url('images/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 70px; /* Account for fixed navbar */
}

.breadcrumb::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumb .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    margin: 0 5px;
    color: #fff;
}

.breadcrumb span {
    color: #fff;
    font-weight: bold;
}

/* Hero Section */
.hero {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Account for fixed navbar */
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="20" cy="80" r="1" fill="white" opacity="0.05"/><circle cx="80" cy="20" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(20px) translateY(-10px); }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 75px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.3s;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.6s;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.9s;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid */
.services {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(45,55,67,0.10);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    max-width: 100%;
}

.service-card:hover {
    box-shadow: 0 8px 44px rgba(45,55,67,0.14);
    transform: translateY(-4px) scale(1.02);
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(30,50,85,0.07);
    margin-bottom: 1rem;
    background: #f7f7fa;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3a3176;
    text-align: center;
    letter-spacing: 0.01em;
}

.service-desc {
    margin-bottom: 1rem;
    color: #54547a;
    text-align: center;
    font-size: 0.95rem;
    min-height: auto;
    line-height: 1.5;
}

.more-btn {
    border: none;
    background: #f2f2fc;
    color: #5353b1;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.more-btn:hover {
    background: #eaeafc;
    color: #212181;
}

.know-more-btn {
    background: linear-gradient(90deg, #5353b1 0%, #7f6afc 100%);
    color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 5px rgba(45,55,67,0.08);
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background: linear-gradient(90deg, #383891 0%, #7f6afc 100%);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text p {
    color: #64748b;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.about-image::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #f2f4f6;
    color: rgb(19, 19, 19);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact p {
    color: #64748b;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
    grid-column: 1 / -1;
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #e5e9f0;
    text-decoration: none;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9px;
}

/* Slider - Mobile Responsive */
.slider {
    background: #f1f0f3;
    overflow: hidden;
    padding: 15px 0;
    border-top: 1px solid #764ba2;
}

.slide-track {
    display: flex;
    width: calc(120px * 12);
    animation: scroll 20s linear infinite;
}

.slide {
    flex-shrink: 0;
    width: 300px;
    height: 45px;
    margin: 0 10px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.85rem;
}

.slide:hover {
    background: #e0e0e0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120px * 6)); }
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

/* Section title utility */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

/* Media Queries */

/* Tablet styles */
@media (min-width: 768px) {
    .container {
        padding: 35px;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 60px;
    }
    
    .hero-content {
        padding: 35px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image {
        height: 400px;
        font-size: 3rem;
    }
    
    .form-group {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.375rem;
    }
    
    .service-icon img {
        width: 92px;
        height: 92px;
    }
    
    .service-card h3 {
        font-size: 1.22rem;
    }
    
    .service-desc {
        font-size: 1rem;
        min-height: 46px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .slide {
        width: 300px;
        height: 50px;
        margin: 0 15px;
        font-size: 1rem;
    }
    
    .slide-track {
        width: calc(150px * 12);
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 6)); }
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .services {
        padding: 10px;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .stats {
        padding: 5rem 0;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .breadcrumb {
        padding: 6rem 0;
    }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        min-height: 70vh;
        margin-top: 60px;
    }
    
    .breadcrumb {
        padding: 4rem 0;
        margin-top: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0 auto 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
/*    .slider {*/
/*        padding: 10px 0;*/
/*    }*/
    
/*    .slide {*/
/*        width: 100px;*/
/*        height: 40px;*/
/*        margin: 0 8px;*/
/*        font-size: 0.75rem;*/
/*    }*/
    
/*    .slide-track {*/
/*        width: calc(100px * 12);*/
/*    }*/
    
/*    @keyframes scroll {*/
/*        0% { transform: translateX(0); }*/
/*        100% { transform: translateX(calc(-100px * 6)); }*/
/*    }*/
/*}*/

/* Very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb {
        padding: 3rem 0;
    }
}

.slide {
  display: inline-block;
  padding: 0 40px;       /* spacing between slides */
  white-space: nowrap;   /* prevent breaking into multiple lines */
  font-size: 16px;
  color: #333;
}
.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
}


/* Logo Styling */
.logo-container {
    text-align: center;
    margin: 20px 0;
}
.logo-container img {
    max-width: 160px;   /* not too big */
    height: auto;
    border-radius: 8px; /* gives a soft classic touch */
}
