/* CSS Variables */
:root {
--primary: hsl(28, 75%, 50%);
--primary-light: hsl(28, 85%, 60%);
--primary-dark: hsl(28, 65%, 40%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(210, 15%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(210, 15%, 15%);
    --muted: hsl(210, 40%, 95%);
    --muted-foreground: hsl(215, 16%, 47%);
    --border: hsl(214, 32%, 91%);
    
    --shadow-soft: 0 4px 20px -4px hsl(110, 70%, 45%, 0.1);
    --shadow-medium: 0 8px 30px -8px hsl(110, 70%, 45%, 0.15);
    --shadow-strong: 0 16px 40px -12px hsl(110, 70%, 45%, 0.2);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
 .social-row { display: flex; gap: 12px; align-items: center; }
.feature-card .img {
    width: 100%;
    height: 175px;
    border-radius: 5px;
overflow:hidden;
margin-bottom:15px;
}
.feature-card img {
    width: 100%;
}
  .social-link {
    display: inline-flex;
    width: 53px;
    height: 53px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white; /* icon color */
    font-size: 22px; /* size of the FA icon inside the square */
    line-height: 1;
    border: none;
    box-sizing: border-box;
    /* square (no rounding) */
border-radius: 0.5rem;
  }

  /* Brand colors */
  .telegram { background: #0088cc; } /* Telegram official-ish blue */
  .whatsapp { background: #25D366; } /* WhatsApp official green */

  /* optional: small hover effect while keeping brand color */
  .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary);
}
.about-highlight1 img, .hero-image img {
    width: 100%;
    height: auto;
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.features-grid1 .feature-card {
    background: #fff;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--primary-foreground);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-strong);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.logo-text h1 {
    font-size: 1.25rem;
    color: var(--foreground);
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}
.features-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}
div#mobblock .feature-card.fade-in-up {
    backdrop-filter: none !important;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-nav-link {
    padding: 1rem 0;
    color: var(--foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background), hsl(110, 20%, 96%));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-strong);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    margin: 2rem auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--card);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(180deg, var(--background), hsl(110, 20%, 96%));
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.about-highlight h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-highlight p {
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin: 0 auto 1rem;
}

.feature-card h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--background), hsl(110, 20%, 96%));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin: 0 auto 1.5rem;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--muted-foreground);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact {
    background: var(--card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card-large {
    background: linear-gradient(180deg, var(--background), hsl(110, 20%, 96%));
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.contact-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    flex-shrink: 0;
}

.contact-detail-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-info a,
.contact-detail-info span {
    font-size: 1.125rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-detail-info a:hover {
    color: var(--primary-dark);
}

.contact-detail-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.map-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

.map-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.map-info p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.map-directions {
    background: linear-gradient(180deg, var(--background), hsl(110, 20%, 96%));
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.map-directions h4 {
    margin-bottom: 0.5rem;
}

.map-directions ul {
    list-style: none;
}

.map-directions li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.map-placeholder {
    background: var(--muted);
    height: 200px;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
}

.map-placeholder svg {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: var(--primary-foreground);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-contacts,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-foreground);
}

.footer-services {
    list-style: none;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  #mobhide {display:none!important}
#pkhide {display:block!important;margin-bottom: 20px;}
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
.social-link {
    width: 30px;
    height: 30px;
  font-size:18px;
  }
.hero-image img {
    width: 100%;
    height: auto;
  }
.social-row {
    margin-right: -13px;
}
  .header-content a.btn.btn-outline {
    padding: 5px;
    font-size: 0;
    display: block;
}
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}