.contact-banner {
    min-height: 320px;
    display: flex;
    align-items: center;

    /* DEMO IMAGE */
    background:
        linear-gradient(to right, #efe7da 40%, rgba(0, 0, 0, 0.15)),
        url("../img/28.jpg");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left text */
.banner-content {
    padding: 60px;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 42px;
    color: #c7921e;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-banner {
        background:
            linear-gradient(to bottom, rgba(239, 231, 218, 0.95), rgba(239, 231, 218, 0.85)),
            url("../img/28.jpg");
        background-position: center;
        text-align: center;
    }

    .banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}





.product-launch-section {
  padding: 80px 0;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

/* Center Content */
.container-1 {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* Titles */
.top-title {
  color: #f5b400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.section-text {
  color: #555;
  max-width: 800px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
}

/* Line */
.title-line {
  width: 80px;
  height: 3px;
  background: #f5b400;
  margin: 20px auto 0;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 20px;
}

/* Image Box */
.image-box {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

/* Hover Effect */
.image-box:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 22px;
  }
}




.fastball-product-hero {
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.fastball-product-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.fastball-product-text h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 65px;
  color: #000;
}

.fastball-product-text p {
  margin: 15px 0 25px;
  font-size: 18px;
  color: #555;
}

.fastball-product-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f5b400;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.fastball-product-btn:hover {
  background: #000;
  color: #fff;
}

/* RIGHT IMAGE */
.fastball-product-image img {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fastball-product-text h1 {
    font-size: 36px;
    line-height: 45px;
  }
}

@media (max-width: 768px) {
  .fastball-product-container {
    flex-direction: column;
    text-align: center;
  }

  .fastball-product-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .fastball-product-text h1 {
    font-size: 28px;
    line-height: 35px;
  }
}






.param-section{
  padding:50px 15px;
  background:#fff;
  font-family:Arial, sans-serif;
}

/* Title */
.param-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  margin-bottom:8px;
}

.con_title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.line_bottom {
  width: 60px;
  height: 4px;
  background: #f9b000;
  margin: 10px auto 30px;
}

/* Table Box */
.news-liebiao {
  max-width: 1100px;
  margin: auto;
  padding: 10px;
  overflow-x: auto;
}

/* Table Design */
.basic-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  background: #fff;
  border: 1px solid #ddd;
}

.basic-table th,
.basic-table td {
  border: 1px solid #e0e0e0;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.5;
}

/* Left Column Style */
.basic-table th {
  background: #f7f7f7;
  font-weight: 600;
  width: 30%;
}

/* Hover Effect */
.basic-table tr:hover {
  background: #fff8e1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .con_title {
    font-size: 22px;
  }

  .basic-table th,
  .basic-table td {
    font-size: 13px;
    padding: 10px;
  }
}




/* Video Section Container */
.con_video_area {
    position: relative;
    width: 100%;
    min-height: 450px; /* Desktop height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensures text inside is centered */
}

/* Background & Overlay */
.video_bg_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url("../") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Wrapper ke andar content center karne ke liye */
}

/* Content Box centering */
.con_video_content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Button aur Text ko center karne ke liye */
    justify-content: center;
    z-index: 2;
    width: 100%;
}

/* Play Button Animation */
.play_btn_box {
    margin-bottom: 20px; /* Space between button and text */
    display: flex;
    justify-content: center;
}

.video_btn {
    display: flex; /* Flex use kiya taaki triangle perfect center rahe */
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #ffb400; 
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.5);
    animation: pulse 2s infinite;
    cursor: pointer;
}

/* Triangle Play Icon */
.play_icon {
    /* triangle positioning logic */
    margin-left: 5px; /* Triangle ko optical center dene ke liye thoda sa right shift */
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
}

.video_btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.video_btn:hover .play_icon {
    border-left-color: #ffb400;
}

/* Text Styling */
.con_video_content h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0; /* Extra spacing remove karne ke liye */
}

/* --- Animations & Responsive --- */

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 180, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

/* Tablet */
@media (max-width: 991px) {
    .con_video_area { min-height: 350px; }
    .con_video_content h2 { font-size: 28px; }
}

/* Mobile */
@media (max-width: 767px) {
    .con_video_area { 
        min-height: 300px;
        background-attachment: scroll;
    }
    .video_btn { width: 60px; height: 60px; }
    .play_icon { 
        border-left-width: 15px; 
        border-top-width: 10px; 
        border-bottom-width: 10px;
        margin-left: 4px;
    }
    .con_video_content h2 { font-size: 20px; }
}



/* Section General Style */
.pdf-download-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #1f2933;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: bold;
}

/* Grid System: Baad mein naye cards add karne par ye apne aap adjust hoga */
.pdf-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Columns */
    gap: 30px;
}

/* Individual Card Style */
.pdf-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.pdf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-placeholder img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.pdf-card h3 {
    font-size: 18px;
    color: #1f2933;
    margin-bottom: 10px;
}

.pdf-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Download Button with Yellow Hover */
.download-btn {
    display: block;
    padding: 12px;
    background-color: #1f2933;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #1f2933;
}

.download-btn:hover {
    background-color: #ffb400; /* Yellow Color */
    color: #1f2933;
    border-color: #ffb400;
}

/* --- Responsive Settings --- */

/* For Tablets (992px and below) */
@media (max-width: 992px) {
    .pdf-container {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
        gap: 20px;
    }
}

/* For Mobile Phones (600px and below) */
@media (max-width: 600px) {
    .pdf-container {
        grid-template-columns: 1fr; /* 1 Column (Full Width) */
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .pdf-card {
        padding: 20px;
    }
}






/* Unique Section Styles */
.svc-commitment-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

.svc-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header & Line */
.svc-header {
    text-align: center;
    margin-bottom: 50px;
}

.svc-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.svc-yellow-line {
    width: 60px;
    height: 4px;
    background-color: #ffb400;
    margin: 0 auto;
}

/* Content Area */
.svc-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.svc-warranty-stmt {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Terms List Styling */
.svc-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-terms-list li {
    font-size: 15.5px;
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.svc-terms-list li p {
    margin: 0; /* Paragraph gap hatane ke liye */
}

.svc-index {
    font-weight: 700;
    color: #1a1a1a;
    margin-right: 12px;
    min-width: 25px; /* Alignment sahi rakhne ke liye */
}

/* --- RESPONSIVENESS --- */

@media (max-width: 992px) {
    .svc-main-title { font-size: 26px; }
    .svc-warranty-stmt { font-size: 18px; }
    .svc-terms-list li { font-size: 14.5px; }
}

@media (max-width: 600px) {
    .svc-commitment-section { padding: 50px 15px; }
    .svc-main-title { font-size: 22px; }
    .svc-warranty-stmt { font-size: 16px; margin-bottom: 20px; }
    .svc-index { margin-right: 8px; }
}





/* image  */

        /* Yeh aapka main section hai */
        .image-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #fff; /* Section ka background color */
            overflow: hidden; /* Image bahar na nikle */
        }

        /* Image styling - No Gaps */
        .full-responsive-img {
            width: 100%;       /* Desktop, Tab, Mobile sab par 100% width */
            display: block;    /* Bottom gap hatane ke liye */
            height: auto;      /* Aspect ratio barabar rahega */
        }

