body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
}
.heading h1{
    font-family: "Cambria Math";
    font-size: 28px;
    margin-bottom: 20px;
}


/* Slider */
.slider {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

/* Slides */
.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
}

.arrow:hover {
    background: rgba(0,0,0,0.7);
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}


/* WHY WE SECTION */
.why-we {
    background-image: url("https://static.vecteezy.com/system/resources/previews/023/428/952/large_2x/abstract-white-and-grey-wavy-pattern-background-texture-in-trendy-color-illustration-vector.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 70px 40px;
}



.why-we h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: book antiqua;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* POP EFFECT (arrow jaisa feel) */
.why-box:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.why-box .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-box p {
    font-size: 15px;
    line-height: 1.6;
}

.hemlo-section {
    width: 100%;
    height: 450px;   /* ye wahi first photo jaisa height hai */
    overflow: hidden;
}

.hemlo-section img {
    width: 80%;
    height: 100%;
    object-fit: cover;
}

.why-wee{
    background-color:#f5f5f5;   /* simple light grey */
    padding:60px 0;
}
.why-gridd{
    width:80%;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 boxes per row */
    gap:30px;
}




/* MOBILE RESPONSIVE */
@media(max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.director-section{
    width:80%;
    padding:60px 10%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#ffffff;
}

.director-content{
    width:55%;
}

.director-content h1{
    font-size:52px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:25px;
    color:#0b0f16;
}

.director-content p{
    font-size:18px;
    line-height:1.7;
    color:#4a4f57;
    max-width:650px;
}

.director-image{
    width:20%;
    text-align:center;
}

.director-image img{
    width:250px;
    height:auto;
}

.director-name{
    margin-top:18px;
    font-size:16px;
    color:#000;
}



/* Paragraph Alternate Marquee */
.text-marquee {
    width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center;
    padding: 10px 0;
}

.text-marquee span {
    display: inline-block;
    color: blue;
    font-family: "Book Antiqua";
    font-size: 20px;
    animation: textBounce 5s linear infinite alternate;
}

/* Alternate left-right movement */
@keyframes textBounce {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(150px);
    }
}

/* Top Bar */
.top-bar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 5px 40px;
    font-size: 14px;
}
.social-icons img {
    width: 20px;
    margin-left: 10px;
}

/* Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    font-size:20px;
    
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}
nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
nav a:hover {
    color: #ff6600;
}


.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.btn {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
      text-align: center;
}

/* 🌈 Our Products Section Background */
.products {
    background: linear-gradient(135deg, #eaf4ff, #d6e9ff);
    padding: 60px 0;
    text-align: center;
}

/* Heading */
.products h2 {
    font-family: Book Antiqua;
    font-size: 32px;
    margin-bottom: 40px;
    color: #8b0000;
}

/* Product Layout */
.product-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Product Card */
.product-item {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image */
.product-item img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* 🔥 Hover Effect */
.product-item:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.45);
    background: #fff0f0;
}

/* Product Text */
.product-item p {
    margin-top: 14px;
    font-family: Book Antiqua;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}


/* Associated Section */
/* 🌐 Associated Section Background */
.associated {
    background: linear-gradient(135deg, #f5f8fc, #e6edf7);
    padding: 60px 0;
    text-align: center;
}

/* Heading */
.associated h2 {
    font-family: Book Antiqua;
    font-size: 30px;
    margin-bottom: 40px;
    color: #003366;
}

/* Logo Layout */
.brand-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* Logo Style */
.brand-logos img {
    width: 180px;
    height: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 🔥 Hover Effect */
.brand-logos img:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}


/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 30px;
}
.footer-links {
    margin-bottom: 10px;
   
}
.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
   
}
.footer-links a:hover {
    color: #ff6600;
}
.name {style="font-family: Arial, sans-serif;}
.photo{display:inline-block}



* {
  box-sizing: border-box;
}



