/**
* name: design_001 Template
* template_id: design_001
*/
/* Common styles for all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Navigation styles */
.navbar {
    background-color: white;
    padding: 1rem;
    position: absolute;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    color: #333;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
    width: max-content;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #888;
}

.logo a {
    text-decoration: none;
    color: #333;
}

/* Hero section styles */
.hero {
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInFromBottom 1.2s ease-out forwards;
}

@keyframes fadeInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Button styles */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-blue {
    color: #007bff;
}

.about-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
}

.about-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
}

/* Main content styles */
.main-content section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.main-content section h2 {
    font-size: 2rem;
    margin: 1rem 0 1.5rem;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.main-content section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #007bff;
    transform: translateX(-50%);
}

.main-content section p {
    margin: 1rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.services-intro h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #007bff;
    transform: translateX(-50%);
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #6c757d;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #007bff;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #333;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    background-color: #1a4b8c;
    padding: 3rem 2rem;
    border-radius: 10px;
    color: white;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-content .btn-outline {
    border-color: white;
    color: white;
}

.cta-content .btn-outline:hover {
    background-color: white;
    color: #1a4b8c;
}
.footer-container {
    display: grid;
    grid-template-columns: 640px 160px 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 40px 16px; */
    align-items: start;
}

/* basic section styling */
.footer-section {
    line-height: 1.6;
}
.footer-section > p,
.footer-section > ul > li, 
.footer-section > ul > li > a{
    color: rgb(138, 138, 138);
    padding: 0;
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 24px 12px;
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .footer .copyright {
        text-align: center;
    }
}

.footer-section a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #007bff;
}

/* Enhanced Social Grid Styles */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background-color: #444;
    border: 1px solid #555;
    border-radius: 8px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.social-link span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.social-link:hover {
    transform: translateY(-2px);
    background-color: #555;
    border-color: #666;
    color: #fff;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Social Brand Colors on Hover */
.social-link.pinterest:hover {
    background-color: #E60023;
    border-color: #E60023;
    color: #fff;
}

.social-link.youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.social-link.telegram:hover {
    background-color: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: #fff;
}

.social-link.tiktok:hover {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.social-link.instagram:hover {
    background-color: #E4405F;
    border-color: #E4405F;
    color: #fff;
}

.social-link.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #888;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        visibility: hidden;
        opacity: 0;
    }    .nav-menu.active {
        max-height: 800px; /* Increased to accommodate dropdown menu items */
        padding: 1rem;
        visibility: visible;
        opacity: 1;
        overflow-y: auto;
    }
      .nav-menu li {
        margin: 1rem 0;
        margin-left: 0 !important;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.8rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Dropdown menu mobile styles */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        /* padding-left: 1rem; */
        margin-top: 0.5rem;
        /* background-color: #f9f9f9; */
        width: 100%;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropbtn {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero {
        height: 60vh;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .main-content section {
        padding: 2rem 1rem;
    }
    
    .main-content section h2 {
        font-size: 1.6rem;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    /* Social Grid Mobile Styles */
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .social-link {
        padding: 0.8rem 0.4rem;
        min-height: 70px;
        gap: 0.4rem;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .social-link span {
        font-size: 0.75rem;
    }
    
    .services {
        padding: 2rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-intro h2 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn, .cta-button, .nav-menu a, .footer-section a, .social-icon {
        padding: 0.8rem 1.5rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icon {
        min-width: 44px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Small Mobile Devices - Enhanced Social Grid */
@media screen and (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 200px;
        margin: 0.8rem auto 0;
    }
    
    .social-link {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.8rem;
        gap: 0.8rem;
        min-height: 60px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .social-link span {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .footer-section h3 {
        text-align: center;
    }
}

/* Page-specific styles */
.hero.index-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/hero.jpg');
}

.hero.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('images/about/about-header.jpg');
}

.hero.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/services/services-secondary.jpg');
}

.hero.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('images/contact/header.jpg');
}

/* About page styles */
.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 70px;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

/* Contact page styles */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 2;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 450px;
}