* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: poppins, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif;
}


.header {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 92%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #3498db;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #3498db;
}

.contact-btn {
    background: #3498db;
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
   
}

.contact-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 8;
    padding: 0.5rem;
    border-radius: 6px;
}

.hamburger:hover {
    background: rgba(52, 152, 219, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 79vh;
    background-image: url(images/bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    width: 87%;
}

.hero-text {
    text-align: center;

}

.hero-text h1 {
    font-size: 3.2rem;
    color:white;
    font-weight: 600;

}

.about-section {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  
}
.about{
   margin-bottom: 4%;
    font-size: 3rem;
    font-weight: 600;
    position: relative;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 22%;
    height: 2px;
    background: blue;
    border-radius: 2px;
}

.image-text_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
  
   
}

.image_container {
    width: 41%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.text_container{
    width: 49%;
}


.image_container img {
    height: 350px;
    max-width: 100%;
    object-fit: cover;
}

.text{
    margin-bottom: 0.7rem;
}

@media screen and (max-width: 768px) {
    .about-section .image-text_container{
flex-direction: column;
}
.hero-text h1
 {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
}


.text_container {
    width: 100%;
}
.about {
    margin-bottom: 4%;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}
.image_container

 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


}
 
        /* footer start */
.footer {
    background: black;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::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="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="90" r="0.8" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.6" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-container {
    width: 87%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.footer-section {
    width: 22%;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.social-link {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #4ecdc4;
    border-color: rgba(78, 205, 196, 0.3);
}

.contact-info {
    color: #bdc3c7;
}

.contact-info div {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-bottom-links a:hover {
    color: #4ecdc4;
}

@media (max-width: 768px) {
    .footer-content {
        flex-wrap: wrap;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3::after{
        left:46%    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info div {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 90%;
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        margin: 0;
    }

    .contact-btn {
        width: 90%;
        text-align: center;
        display: none;
        margin-top: 1rem;
        margin-left: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        font-size: 1rem;
    }



    @media (max-width: 480px) {
        .nav-container {
            height: 60px;
        }

        .main-content {
            margin-top: 60px;
        }

        .nav-menu {
            top: 0px;
    
            z-index: 6;
        
            height: calc(100vh - 60px);
        }

        .logo {
            font-size: 1rem;
        }
    }
}



        .cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .card {
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #dee2e6;
            transition: all 0.3s ease;
        }

        .card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            border-color: #495057;
        }

        .card:hover::before {
            background: #495057;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
        }

        .card:hover .card-icon {
            background: #e9ecef;
            border-color: #adb5bd;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .card-description {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
            padding: 15px;
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .download-btn {
            text-decoration: none !important;
            width: 100%;
            padding: 15px;
            background: #000000;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transition: left 0.4s ease;
        }

        .download-btn:hover {
            background: #343a40;
        }

        .download-btn:hover::before {
            left: 100%;
        }

        .download-btn:active {
            background: #212529;
        }

        .download-icon {
            display: block;
        }
        .download-btn svg{
            height: 23px;
            width: 23px;
        }

        /* Remove individual card gradient colors */

        .success-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #28a745;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .success-message.show {
            transform: translateX(0);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .downloading {
            animation: pulse 1s infinite;
        }

        .reports{
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5rem 0;
          
        }

        .card h3{
            margin-bottom: 3rem;
        }
        .bredcum{
            text-align: center;
            width: 100%;
            height: 55vh;
            padding: 4rem 0;
            background-image: url('images/report-bg.png');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bredcum h1{
            font-size: 4rem;
            color: white;
        } 

        #btn{
            display: inline-block;
            font-size: 18px;
            padding: 6px 18px;
            border-radius: 20px;
            text-decoration: none;
            color: white;
            background-color: blue;
            margin: 25px 0px 0px 0px;
        }
        /* Culture page srart here */

        .culture-hero_section{
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url("images/culture.jpeg");
            background-size: cover;
            background-position: center;
            height:90vh;

        }

        .culture_title{
            font-size: 4rem;
            color: white;
            font-weight: 600;
        }
        .culture_text{
            width: 75%;
            color: white;
            font-size: 1.2rem;
            line-height: 1.5;
            margin-top:2px;
        }

        .container_2{
            width: 75%;
        }

        .value{
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 0;
        }

        .value-title{
            font-size: 3rem;
            font-weight:600;
            margin-bottom: 20px;
           
        }

        .value-description{
            font-size: 1.2rem;
          
        }


        
        .cards-2-grid {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .professional-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 28px 24px;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.2s ease;
            position: relative;
            height: 300px;
        }

        .professional-card:hover {
            border-color: #cbd5e0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .card-icon-wrapper {
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
            font-weight: 500;
        }

        .card-icon-wrapper svg {
            width: 37px;
            height: 37px;
           
        }
        .card-text-content {
            margin-top: 30px;
            flex: 1;
            min-width: 0;
        }

        .card-heading {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 6px;
            line-height: 1;
        }

        .card-subtext {
    letter-spacing: -0.3px;
    font-size: 0.9rem;
    /* color: #718096; */
    line-height: 1.4;
}

        @media (max-width: 1024px) {
            .cards-2-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 640px) {
            .culture-hero_section{
                height: 412px;
            }
            .cards-2-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .professional-card {
                padding: 24px 20px;
                gap: 16px;
            }
            
            .main-title {
                font-size: 1.875rem;
            }
            
            .main-subtitle {
                font-size: 1rem;
            }
            .cards-grid {
                display: grid
            ;
                grid-template-columns: repeat(1, 1fr);
                gap: 30px;
                margin-top: 30px;
            }
            .bredcum h1{
                font-size: 3rem;
            }
               .container_2{
            width: 
            90%;
        }
       .culture_title
 {
    font-size: 3rem;
    color: white;
    font-weight: 600;
            
        }
        .culture_text {
    width: 100%;
        font-size: 1rem;
            margin-top: 6px;
        }
        .value-description
 {
    font-size: 1rem;
}
        .value-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
        }

        
       

   
        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .main-title {
            color: #333;
            font-size: 3rem;
            font-weight: 600;
            text-shadow: none;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            color: #666;
            font-size: 1.2rem;
            font-weight: 300;
        }

        .masonry-container {
            padding-bottom: 6%;
            column-count: 4;
            column-gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .photo-frame {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .photo-frame {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102,126,234,0.8), rgba(118,75,162,0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .image-overlay {
            opacity: 1;
        }

        .overlay-text {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            text-align: center;
            padding: 1rem;
        }

        /* Unique height classes */
        .portrait-tall { height: 400px; }
        .portrait-medium { height: 300px; }
        .portrait-short { height: 250px; }
        .landscape-wide { height: 200px; }
        .landscape-medium { height: 280px; }
        .square-format { height: 320px; }

        /* Unique color themes */
        .nature-theme {
            background: linear-gradient(45deg, #2E8B57, #98FB98);
        }

        .urban-theme {
            background: linear-gradient(45deg, #2C3E50, #BDC3C7);
        }

        .sunset-theme {
            background: linear-gradient(45deg, #FF6B35, #F7931E);
        }

        .ocean-theme {
            background: linear-gradient(45deg, #006994, #87CEEB);
        }

        .vintage-theme {
            background: linear-gradient(45deg, #8B4513, #DEB887);
        }

        .modern-theme {
            background: linear-gradient(45deg, #FF1744, #E91E63);
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .masonry-container { column-count: 3; }
        }

        @media (max-width: 768px) {
            .masonry-container { 
                column-count: 2;
                column-gap: 1rem;
            }
            .main-title { font-size: 2.5rem; }
            
        }

        @media (max-width: 480px) {
            .masonry-container { column-count: 2; }
            .main-title { font-size: 2rem; }
        }

        /* Animation for loading */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .gallery-item:nth-child(7) { animation-delay: 0.7s; }
        .gallery-item:nth-child(8) { animation-delay: 0.8s; }
        .gallery-item:nth-child(9) { animation-delay: 0.9s; }
        .gallery-item:nth-child(10) { animation-delay: 1.0s; }
        .gallery-item:nth-child(11) { animation-delay: 1.1s; }
        .gallery-item:nth-child(12) { animation-delay: 1.2s; }
        @media screen and (max-width: 768px) {
            #btn {
                display: inline-block;
                font-size: 18px;
                padding: 6px 18px;
                border-radius: 20px;
                text-decoration: none;
                color: white;
                background-color: blue;
                margin: 2px 0px 16px 0px;
            }
            footer{
                padding: 30px 0px 30px 0px;
                background-color: black;
            }
            .footer-section {
                width: 100%;
            }
            
            @media screen and (max-width: 768px) {
                .footer-section {
                    width: 100%;
                }
            }
        }