* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Bengali', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4a574;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4a574;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* style.css এ Hero Section রিপ্লেস করুন: */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* আপনার ছবি Background */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('https://scontent.fdac45-1.fna.fbcdn.net/v/t39.30808-6/336913146_6611161368913084_729275701191127125_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=53a332&_nc_eui2=AeE-L2L5hvk4tfl6sHo2g-kwnO-gujWuaEqc76C6Na5oShpRtikyVOn8CO5axWpad8my2KGWdfDBwP8cvRmpUGSd&_nc_ohc=VgW2S889OAsQ7kNvwEA4-p8&_nc_oc=Adqs1DmKBCxHJFL499k8ZwhnsPyzlxe9QfFuNotXzwqd5_1D9WxNFZ4WbCrwS8xBDXw&_nc_zt=23&_nc_ht=scontent.fdac45-1.fna&_nc_gid=gnwKE3Ho6e1xoljWIWiLTA&oh=00_Af3Z_ZLZBws57eY3pm-JU4cowtG0qZb8HJl2N_31dV4IAA&oe=69EFD0A3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}
.hero-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #ffd700;
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-image {
    position: relative;
}

.floating-shape {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    top: -50%;
    right: -20%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
/* Updated Services Styles */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4a574, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3.5rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #d4a574, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d4a574;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Featured Service Card */
.featured {
    border: 3px solid #ffd700;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
    z-index: 2;
}

.featured i {
    font-size: 4rem !important;
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Enhanced Portfolio Styles */
.portfolio-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 300px;
}

.portfolio-item:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.95) 70%);
    color: white;
    padding: 3rem 2rem 2.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
}

.overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.5;
}

/* Portfolio Buttons */
.portfolio-buttons {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-buttons .btn-primary,
.portfolio-buttons .btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .overlay {
        padding: 2rem 1.5rem 2rem;
    }
    
    .portfolio-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Team Section */
.team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.team-member:hover .social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-overlay a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-overlay a:hover {
    background: #d4a574;
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.designation {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Team */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-image {
        height: 300px;
    }
}

/* Booking */
.booking {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}

.full-width {
    width: 100%
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item i {
        font-size:small}
        /* ========================================
   MOBILE PERFECT RESPONSIVE UPDATES
======================================== */

/* Mobile First - Base Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .navbar {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.6rem;
        margin-right: 8px;
    }
    
    /* Mobile Menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(135deg, #d4a574, #ffd700);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        backdrop-filter: blur(20px);
        z-index: 2000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.4rem;
        color: white !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    /* Hero Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 120px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .floating-shape {
        width: 200px;
        height: 200px;
        right: -30%;
    }
    
    /* Sections Mobile */
    .services,
    .portfolio,
    .team,
    .booking {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
    
    .service-card i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        height: 280px;
        border-radius: 20px;
    }
    
    .overlay {
        padding: 2rem 1.5rem 1.8rem;
    }
    
    .overlay h4 {
        font-size: 1.3rem;
    }
    
    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .member-image {
        height: 280px;
    }
    
    /* Booking Mobile */
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 16px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Buttons Mobile */
    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 1rem;
        min-width: 200px;
        justify-content: center;
    }
    
    .portfolio-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-buttons .btn-primary,
    .portfolio-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 18px 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-links a {
        font-size: 1.6rem;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 30px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mobile Fix */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 80px 20px 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Prevent Text Zoom on iOS */
input, textarea, select {
    font-size: 16px;
}

/* Touch Targets - Minimum 44px */
.btn-primary, .btn-secondary, .social-links a, .hamburger span {
    min-height: 44px;
    min-width: 44px;
}
        