@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tenor+Sans&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body{ font-family: "Poppins", sans-serif;}

/*Comman css*/
a{text-decoration: none}
.padding-space{padding: 3rem 0rem}
 h1, h2, h3, h4, h5, h6 {
 	font-family: "Poppins", sans-serif;
 	font-weight: 600;
 }
/*header section desing*/
/*header
{
	background: #1B1B1B;
}*/
.active
{
	color: #000 !important;
	font-weight: 500 !important;
}
.nav-link
{
	color: #000;
	font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
}



    /* Footer */
        .footer {
            background: #111;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 30px;
        }
        .footer-brand {
            font-family: "Poppins", sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }
        .footer-brand span { color: #c9a96e; }
        .footer-desc { line-height: 1.8; margin-bottom: 25px; }
        .footer-title {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #c9a96e;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #c9a96e;
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: #c9a96e;
            border-color: #c9a96e;
            color: #333;
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 50px;
            padding-top: 25px;
            text-align: center;
            font-size: 0.9rem;
        }

/*        contact page desing*/

/*body{
    font-family: 'Poppins', sans-serif;
    background:#f8f9fa;
}*/

/* Hero Section */

.contact-banner{
    background: #f8f9fae3;
    height:350px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.contact-banner h1{
    font-size:60px;
    font-weight:700;
    color: #000;
}

.contact-banner p{
    font-size:18px;
    color: #000;
}

/* Contact Cards */

.contact-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.contact-card i{
    font-size:45px;
    color:#C9A96E;
    margin-bottom:20px;
}

/* Form */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    border-radius:10px;
}

.contact-form textarea{
    height:80px !important;
}

.btn-contact{
    background:#C9A96E;
    color:#fff;
    padding:12px 35px;
    border:none;
    border-radius:50px;
    transition:.4s;
}

.btn-contact:hover{
    background:#084298;
    transform:scale(1.05);
}

/* Map */

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:20px;
}

/* Footer */

.contact-footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}

@media screen and (max-width: 600px) {
  .contact-banner{
    background: #f8f9fa;
    height:230px;
}
}

/* ===== ANIMATED BACKGROUND ===== */
        .bg-animation {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: orbFloat 15s ease-in-out infinite;
        }

        .bg-animation .orb:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .bg-animation .orb:nth-child(2) {
            width: 300px;
            height: 300px;
            background: #ec4899;
            bottom: -5%;
            right: -5%;
            animation-delay: -5s;
            animation-duration: 20s;
        }

        .bg-animation .orb:nth-child(3) {
            width: 250px;
            height: 250px;
            background: #10b981;
            top: 50%;
            left: 50%;
            animation-delay: -10s;
            animation-duration: 25s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -30px) scale(1.1); }
            66% { transform: translate(-30px, 50px) scale(0.9); }
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-80px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(80px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger children */
        .stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
        .stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
        .stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
        .stagger-children > *:nth-child(4) { transition-delay: 0.4s; }

        /* ===== HERO SECTION ===== */
        .about-hero {
            padding: 80px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: linePulse 3s ease-in-out infinite;
        }

        @keyframes linePulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #c9a96e;
            border: 1px solid rgb(0 0 0 / 30%);
            color: #fff;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 2rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-badge i {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #101010 30%, #c9a96e 80%, #000000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-text {
            font-size: 1.125rem;
            color: #8b8d91;
            line-height: 1.8;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #c9a96e;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #000;
            margin-top: 0.5rem;
        }

        /* Counter animation */
        .counter {
            display: inline-block;
        }

        /* ===== IMAGE SECTION ===== */
        .about-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .about-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .about-image-wrapper:hover::before {
            opacity: 1;
        }

        .about-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .about-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .image-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: #d5a64e;
            backdrop-filter: blur(10px);
            border: 1px solid #d5a64e;
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: slideInLeft 1s ease-out 0.8s both;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .image-badge-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: #f2f2f3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }

        .image-badge-text h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #fff;
        }

        .image-badge-text p {
            font-size: 0.875rem;
            color: #f7f7f7;
            margin: 0;
        }

        /* Floating shapes */
        .float-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #ec4899);
            opacity: 0.6;
            animation: floatShape 6s ease-in-out infinite;
        }

        .float-shape.shape-1 {
            width: 80px;
            height: 80px;
            top: -20px;
            right: 40px;
            animation-delay: 0s;
        }

        .float-shape.shape-2 {
            width: 40px;
            height: 40px;
            bottom: 60px;
            right: -20px;
            animation-delay: -2s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* ===== MISSION SECTION ===== */
        .mission-section {
            padding: 100px 0;
            position: relative;
            background:  #111;
        }

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

        .section-label {
            display: inline-block;
            color: #000000;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-label::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #c9a96e, #9f8f8f);
            border-radius: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #94a3b8;
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Mission Cards */
        .mission-card {
            background: #000000;
            border: 1px solid #f7f7f7;
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #ec4899);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .mission-card:hover::before {
            transform: scaleX(1);
        }

        .mission-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.5s ease;
        }

        .mission-card:hover .mission-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .mission-icon.purple {
           background: rgb(255 255 255);
           color: #000000;
        }

        .mission-icon.pink {
            background: rgb(255 255 255);
    color: #000000;
        }

        .mission-icon.green {
         background: rgb(255 255 255);
    color: #000000;
        }

        .mission-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .mission-card p {
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ===== TIMELINE SECTION ===== */
        .timeline-section {
            padding: 100px 0;
            background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: #000;
            opacity: 0.3;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 4rem;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            background: #111;
            border: 1px solid 1px solid #c9a96e;
            border-radius: 16px;
            padding: 2rem;
            max-width: 350px;
            position: relative;
            transition: all 0.5s ease;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            border-color: #c9a96e;
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #0f172a;
            border: 3px solid #c9a96e;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            background: #6366f1;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
            transform: translateX(-50%) scale(1.3);
        }

        .timeline-year {
            display: inline-block;
            background: linear-gradient(135deg, #ffffff, #ffffff);
            color: #333;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-content h4 {
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .timeline-content p {
            color: #94a3b8;
            font-size: 0.9375rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ===== TEAM SECTION ===== */
        .team-section {
            padding: 100px 0;
            background: #111;
        }

        .team-card {
            background: #111;
            border: 1px solid #334155;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-15px);
            border-color: #6366f1;
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
        }

        .team-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 2rem;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-social {
            display: flex;
            gap: 0.75rem;
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-social {
            transform: translateY(0);
        }

        .team-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .team-social a:hover {
            background: #6366f1;
            transform: translateY(-3px);
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-info h4 {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .team-info p {
            color: #e9ecef;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0;
        }

        /* ===== VALUES SECTION ===== */
        .values-section {
            padding: 100px 0;
            position: relative;
        }

        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: #111;
            border: 1px solid #334155;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .value-item::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, #6366f1, #ec4899);
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .value-item:hover {
            transform: translateX(10px);
            border-color: #6366f1;
        }

        .value-item:hover::after {
            transform: scaleY(1);
        }

        .value-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #eeeeff;
            
            line-height: 1;
            min-width: 50px;
        }

        .value-content h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .value-content p {
            color: #94a3b8;
            margin: 0;
            line-height: 1.6;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            background: linear-gradient(135deg, rgb(0 0 0), rgb(0 0 0 / 77%));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-text {
            color: #94a3b8;
            font-size: 1.125rem;
            max-width: 500px;
            margin: 0 auto 2rem;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #c9a96e, #c9a96e);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
            color: white;
        }

        .btn-cta i {
            transition: transform 0.3s ease;
        }

        .btn-cta:hover i {
            transform: translateX(5px);
        }

        /* ===== PARTICLES ===== */
        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: #6366f1;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            z-index: 9999;
        }

        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .timeline::before { left: 30px; }
            .timeline-item,
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 70px;
                padding-right: 0;
            }
            .timeline-dot { left: 30px; transform: translateX(-50%); }
            .timeline-item:hover .timeline-dot { transform: translateX(-50%) scale(1.3); }
            .cta-title { font-size: 2rem; }
            .cta-container { padding: 2.5rem 1.5rem; }
        }

        @media (max-width: 768px) {
            .hero-stats { gap: 2rem; }
            .stat-number { font-size: 2rem; }
            .about-image-wrapper img { height: 350px; }
        }

        .gallery-section{
/*    background:#f8fafc;*/
    overflow:hidden;
}

.section-title span{
      color: #c9a96e;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin-top:10px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    border: 1px solid gray;
    padding: 0.4rem;
}

.gallery-card img{
    width:100%;
/*    height:400px;*/
    object-fit:cover;
    transition:0.7s;
}

/*.gallery-card:hover img{
    transform:scale(1.15);
}*/

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.1)
    );

    display:flex;
    align-items:flex-end;
    padding:30px;
    opacity:0;
    transition:.5s;
}

.gallery-card:hover .overlay{
    opacity:1;
}

.overlay h4{
    color:#fff;
    transform:translateY(30px);
    transition:.5s;
}

.gallery-card:hover h4{
    transform:translateY(0);
}

.swiper{
    padding-bottom:70px;
}

.swiper-button-next,
.swiper-button-prev{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:20px;
    color:#ff6b00;
}

.swiper-pagination-bullet-active{
    background:#ff6b00;
}

@media(max-width:768px){

.section-title h2{
    font-size:32px;
}

/*.gallery-card img{
    height:300px;
}*/

}


.sub-title{
    color:#c9a96e;
    font-weight:600;
    letter-spacing:2px;
}

.section-title{
    font-size:40px;
    font-weight:700;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height: 360px;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.review-header img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.review-header h5{
    margin:0;
    font-weight:700;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:15px;
}

.review-card p{
    color:#666;
    line-height:1.8;
}

.swiper-pagination-bullet-active{
    background:#ff6600;
}

.product
{
	border-radius: 15px;
}
.product:hover
{
	border:2px solid gray;
}
.product strong
{
	font-size: 1.3rem;
	text-align: center;
	align-items: center;
	
}
.product-card{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    cursor:pointer;
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:fill;
    transition:0.7s;
    border-radius: 10px;
}

.product-card:hover img{
    transform:scale(1.15);
}

 /* Why Choose Us */
        .why-us-section {
            padding: 50px 0;
/*            background: #111;*/
            color: #C9A96E;
        }
        .why-us-section .section-title { color: #000000; }
        .feature-box {
            padding: 40px 30px;
            background: #dee2e642;
          
            border: 1px solid #d3d3d361;
            transition: all 0.4s ease;
            height: 100%;
        }
        .feature-box:hover {
            background: #dee2e642;
            border-color: #333;
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 20px;
        }
        .feature-box h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }
        .feature-box p {
            color: #333;
            font-size: 0.95rem;
            line-height: 1.7;
        }

.product{
    border-radius:20px;
    overflow:hidden;
    transition:.5s ease;
    position:relative;
}

.product:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.18)!important;
}

.product-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.product-card img{
    width:100%;
/*    height:280px;*/
    object-fit:cover;
    transition:1s;
}

.product:hover img{
/*    transform:scale(1.15) rotate(2deg);*/
}

/* Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.1),
        rgba(0,0,0,.7)
    );

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.5s;
}

.product:hover .overlay{
    opacity:1;
}

.overlay i{
    color:#fff;
    font-size:35px;
    transform:scale(0);
    transition:.5s;
}

.product:hover .overlay i{
    transform:scale(1);
}

/* Shine Effect */

.product::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );
    z-index:2;
}

.product:hover::before{
    animation:shine .8s;
}

@keyframes shine{

    100%{
        left:150%;
    }

}
.quality-section{
    background:#f8f8f8;
}

.sub-title{
    color:#b8860b;
    font-weight:600;
    letter-spacing:2px;
}

.main-title{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.quality-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:20px;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.quality-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg, #C9A96E, #C9A96E);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.icon i{
    font-size:32px;
    color:#fff;
}

.quality-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.quality-card p{
    color:#666;
    margin:0;
}


        /* Products Section */
        .products-section { padding: 100px 0; background: #f5f5f5; }
        .product-card {
            background: #fff;
            border: none;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        .product-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .product-card:hover .product-image-wrapper img { transform: scale(1.1); }
        .product-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(26,26,26,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        .product-card:hover .product-overlay { opacity: 1; }
        .product-body { padding: 30px; }
        .product-title { font-size: 1.4rem; margin-bottom: 10px; }
        .product-desc {
            color: #8a8a8a;
            font-size: 0.95rem;
            line-height: 1.6;
        }

    .btn-primary-custom {
            background: #c9a96e;
            color: #1a1a1a;
            border: none;
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background: #d4b87a;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
        }

        /* Product Detail */
        .product-detail-section { padding: 80px 0; }
        .product-gallery { position: relative; }
        .product-main-image {
            height: 500px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .product-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-thumbnails {
            display: flex;
            gap: 15px;
        }
        .product-thumbnail {
            width: 100px;
            height: 100px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .product-thumbnail.active, .product-thumbnail:hover { border-color: #c9a96e; }
        .product-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        .specs-table tr { border-bottom: 1px solid #eee; }
        .specs-table td { padding: 15px 20px; }
        .specs-table td:first-child {
            font-weight: 600;
            color: #1a1a1a;
            width: 40%;
        }
        .specs-table td:last-child { color: #8a8a8a; }

@media screen and (max-width: 768px) {
.mission-card {
  
    padding: 1rem;
  
}
}

.image-box {
    overflow: hidden;
    border-radius: 20px;
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-box:hover .product-img {
    transform: scale(1.1);
}
.product_link
{
    border: 1px solid #c9a96e;
    border-radius: 10px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    padding: 0.5rem 1rem;
}
.product_link:hover
{
    background: #c9a96e;
    color: #fff;
}
 .whatsapp_main {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    z-index: 10;
}
.product1
{
    border: 1px solid #33333336;
    height: 440px;
}
.am-feature-section{
    background:#f8f8f8;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.am-feature-box{
    display:flex;
    align-items:center;
    gap:18px;
    padding:25px;
    border-right:1px solid #e5e5e5;
    transition:all .4s ease;
    height:100%;
}

.am-feature-box:hover{
    transform:translateY(-8px);
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.am-feature-icon{
    font-size:32px;
    color:#000;
    transition:.4s;
}

.am-feature-box:hover .am-feature-icon{
    transform:scale(1.15);
}

.am-feature-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:4px;
}

.am-feature-text{
    margin:0;
    color:#777;
    font-size:13px;
}

.am-no-border{
    border-right:none;
}

@media(max-width:991px){
    .am-feature-box{
        border-right:none;
        border-bottom:1px solid #e5e5e5;
    }
}

@media(max-width:600px){
  .product1
{
    border: 1px solid #33333336;
    height: 480px;
}
}

.btn_css
{
    border: none;
    background: #000;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 5px;
}