/* Utility */
        .New_product_Page_container {
            max-width: 1280px;
            margin: 0 auto;
            
            padding: 0 1rem;
        }

        /* Hero Section */
        .New_product_Page_hero {
            position: relative;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #ffffff; /* --white */
            padding: 4rem 1rem;
            margin-bottom: 2rem;
            text-align: center;
            overflow: hidden;
        }

        .New_product_Page_hero-bg-pattern {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0.1;
            background-image: radial-gradient(#ffffff 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .New_product_Page_hero-content {
            position: relative;
            z-index: 2;
        }

        .New_product_Page_hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 99px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .New_product_Page_hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
          color : white;
        }

        .New_product_Page_hero h1 span {
            color: #60a5fa; /* Light blue accent */
        }

        .New_product_Page_hero p {
            max-width: 600px;
            margin: 0 auto;
            color: #94a3b8;
        }

        /* Main Layout */
        .New_product_Page_layout-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            padding-bottom: 4rem;
        }

        /* Sidebar */
        .New_product_Page_sidebar-col {
            flex: 0 0 280px;
        }

        @media (max-width: 768px) {
            .New_product_Page_sidebar-col {
                flex: 100%;
            }
        }

        .New_product_Page_filter-card {
            background: #ffffff; /* --white */
            padding: 1.5rem;
            border-radius: 12px; /* --radius */
            border: 1px solid #e2e8f0; /* --border */
            position: sticky;
            top: 1rem;
        }

        .New_product_Page_filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .New_product_Page_btn-reset {
            background: none;
            border: none;
            color: #2563eb; /* --primary */
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .New_product_Page_search-wrapper {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .New_product_Page_search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b; /* --text-light */
        }

        .New_product_Page_search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid #e2e8f0; /* --border */
            border-radius: 8px;
            font-size: 0.875rem;
        }

        .New_product_Page_filter-group-title {
            display: block;
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
        }

        .New_product_Page_radio-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .New_product_Page_radio-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 0.875rem;
            color: #475569; /* --secondary */
        }

        .New_product_Page_divider-line {
            height: 1px;
            background: #e2e8f0; /* --border */
            margin: 1.5rem 0;
        }

        .New_product_Page_filter-select {
            width: 100%;
            padding: 0.6rem;
            border: 1px solid #e2e8f0; /* --border */
            border-radius: 6px;
            background-color: #ffffff; /* --white */
        }

        /* Products Grid */
        .New_product_Page_content-col {
            flex: 1;
        }

        .New_product_Page_products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .New_product_Page_view-toggle {
            display: flex;
            gap: 0.5rem;
        }

        .New_product_Page_toggle-btn {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0; /* --border */
            background: #ffffff; /* --white */
            border-radius: 6px;
            cursor: pointer;
            color: #64748b; /* --text-light */
        }

        .New_product_Page_toggle-btn.New_product_Page_active {
            background: #2563eb; /* --primary */
            color: #ffffff; /* --white */
            border-color: #2563eb; /* --primary */
        }

        /* Card Styles */
        .New_product_Page_card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .New_product_Page_card-grid.list-view {
            grid-template-columns: 1fr;
        }

        .New_product_Page_card {
            background: #ffffff; /* --white */
            border: 1px solid #e2e8f0; /* --border */
            border-radius: 12px; /* --radius */
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
        }

        .New_product_Page_card-grid.list-view .New_product_Page_card {
            flex-direction: row;
        }

        .New_product_Page_card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); /* --shadow */
        }

        .New_product_Page_card-img-wrapper {
            position: relative;
            background: #f1f5f9;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .New_product_Page_card-grid.list-view .New_product_Page_card-img-wrapper {
            width: 250px;
            height: auto;
        }

        .New_product_Page_card-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .New_product_Page_badge-top-right {
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

        .New_product_Page_pill-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 99px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .New_product_Page_badge-brand { background: #dbeafe; color: #1e40af; }
        .New_product_Page_badge-indigo { background: #e0e7ff; color: #3730a3; }
        .New_product_Page_badge-orange { background: #ffedd5; color: #9a3412; }
        .New_product_Page_badge-purple { background: #f3e8ff; color: #6b21a8; }
        .New_product_Page_badge-teal { background: #ccfbf1; color: #115e59; }

        .New_product_Page_card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .New_product_Page_model-code {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: #64748b; /* --text-light */
            background: #f1f5f9;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }

        .New_product_Page_card-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0.5rem 0;
            color: #0f172a; /* --text-dark */
        }

        .New_product_Page_card-desc {
            font-size: 0.875rem;
            color: #475569; /* --secondary */
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .New_product_Page_tags-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .New_product_Page_mini-tag {
            font-size: 0.7rem;
            border: 1px solid #e2e8f0; /* --border */
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            color: #475569; /* --secondary */
        }

        .New_product_Page_btn-download {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.75rem;
            background: #ffffff; /* --white */
            border: 1px solid #2563eb; /* --primary */
            color: #2563eb; /* --primary */
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        .New_product_Page_btn-download:hover {
            background: #2563eb; /* --primary */
            color: #ffffff; /* --white */
        }
        
        .New_product_Page_hidden {
            display: none !important;
        }
        
        .New_product_Page_no-results {
            text-align: center;
            padding: 3rem;
            background: #ffffff;
            border-radius: 12px;
            border: 1px dashed #e2e8f0;
            grid-column: 1 / -1;
        }
        
        .New_product_Page_no-results-icon {
            font-size: 2rem;
            color: #94a3b8;
            margin-bottom: 1rem;
        }
        
        .New_product_Page_cta-banner {
            margin-top: 3rem;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            height: 16rem;
            grid-column: 1 / -1;
        }
        
        .New_product_Page_cta-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .New_product_Page_cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }
        
        .New_product_Page_cta-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 2rem;
            color: white;
        }
        
        .New_product_Page_cta-tag {
            background: #2563eb;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            text-transform: uppercase;
        }
        
        .New_product_Page_cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0.5rem 0;
          color : white;
          
        }
        
        .New_product_Page_cta-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            max-width: 500px;
          color : white;
        }
        
        .New_product_Page_cta-btn {
            background: white;
            color: #0f172a;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
        }










































.ck-content .image {
    display: block !important;
    clear: both;
    text-align: center;
    margin: 15px 0px !important;
  
}

.xtra-popup-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.xtra-popup-card{
  background:#fff;
  width:420px;
  border-radius:16px;
  padding:20px;
  position:relative;
}
.xtra-popup-close{
  position:absolute; top:10px; right:14px;
  font-size:28px; cursor:pointer;
}
.xtra-popup-product{
  text-align:center;
  margin-bottom:20px;
}
.xtra-popup-product img{
  max-width:160px;
  margin-bottom:12px;
}
.xtra-popup-product h3{
  font-size:18px;
  color:#0b2c63;
}


































.breadcrumb__area{
display : none !important;
}

.card{
  border-radius: none !important;
}


.btn{
  border-radius: none !important;
  
}
.bb-product-quantity input[type=number] {
    -moz-appearance: textfield;
    background-color: none;
    min-width: 50px;
    padding: 0;
    text-align: center;
    background: none !important;
}

.input-group .btn {
    position: relative;
    z-index: 2;
    background: #dedede !important;
}
.input-group {
    position: relative;
    z-index: 2;
    background: none !important;
}



@media (max-width: 767px) {
.tgmenu__nav .logo img {
    max-height: 61px !important;
}
  
  .about_product_service_header_h1{
    font-size : 2rem;
    
  }
  .about_product_service_header_p{
    font-size : 12px;
    
  }
  
  .Home_about_text {
    font-size: 12px;
    
  }
  .Home_about_title{
    font-size : 2rem;
    
  }
  #Home_offer_title{
    font-size : 17px !important;
        text-align : left !important;
  }
  .Home_offer_text {
    font-size: 12px;
    text-align : justify;
    
  }
  
     .Home_offer_title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.25;
        color: #ffffff;
        text-align: center !important;
    }
  
  .about_page_code-text-container h1 {
    font-size: 16px;
   
}
  .about_page_code-text-container p {
    font-size: 2rem;
 
}
  .xf-text
{
  font-size: 12px;
  }
  

  #Homefirstcard{
  background-color: white ;
  
}
  .xf-grid{
padding-top : 10px;
    padding-bottom : 10px;
  }
  .why-choose-list li {
   
    text-align: left;
}
  
}

.tgmobile__menu .offCanvas__side-info {
    border-top: unset;
    padding-top: 20px;
}

.tgmobile__menu {
width : 383px !important

}






















.fw-logo img {
    max-height: 118px !important;
}
.tgmenu__navbar-wrap>ul{
  
  margin-inline : auto !important;
  
}
.form-label {

    color: black !important;
}
.form-check-label{
  color : black;
}

.blog__post-content-two {
    padding: 30px;
    max-width: 815px !important;
}

.container {
    max-width: 1428px !important;
}

.footer-info-two .list-wrap li .content a {
  color : white ;
  font-weight : normal;
  
}

.footer__content-two>p{
  color : white ;
  font-weight : normal;
  
}
.footer-info-two .list-wrap li .icon{
  color : white ;

  
}

.widget-information .footer-info-two .list-wrap li .content{
  color : white ;
  font-weight : normal;
  
}

        
      /* Main Container: Floating Card Effect */
        .contact-container {
            display: flex;
            /* Info Panel (light) on Left, Form Panel (dark) on Right */
            flex-direction: row-reverse; 
            width: 100%;
            max-width: 1220px;
          
            
            overflow: hidden;
           
            transition: transform 0.3s ease;
          display: flex;
          justify-content : center;
         margin-inline: auto;
              border: 1px solid #e0e0e0;
   

    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* --- Right Panel (Form Theme) --- */
        .form-panel {
            background-color: #004d40; /* Dark Teal */
            padding: 40px;
            flex: 1 1 55%; /* Takes up more space on desktop */
            color: white !important; /* Text Light */
          /*border-radius : 20px */
        }

        .form-panel h2 {
            font-weight: 700;
            margin-bottom: 30px;
            font-size: clamp(24px, 3vw, 36px);
          color : white !important ;
          
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
        }

        .form-input, textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            background-color: #00695c; /* Input Dark */
            color: #ffffff; /* Text Light */
            box-sizing: border-box;
            transition: box-shadow 0.3s ease, background-color 0.3s ease;
            outline: none;
            resize: none;
        }

        .form-input::placeholder, textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Focus Glow Effect */
        .form-input:focus, textarea:focus {
            background-color: #00695c; /* Input Dark */
            box-shadow: 0 0 0 4px rgba(0, 191, 165, 0.4); /* Prominent soft glow using accent color */
        }

        textarea {
            min-height: 150px;
        }

        /* Submit Button Styling */
        .submit-btn {
            background-color: white; /* Accent Bright */
            color: #000000; /* Primary Dark */
            font-weight: 700;
            padding: 15px 30px;
            border: none;
border-radius: 10px; 
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Hover Animation: Slight darken and lift */
        .submit-btn:hover {
            background-color: white; /* Slightly darker shade of accent-bright */
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          color : #000000
        }

        .submit-btn:disabled {
            background-color: #ccc;
            color: #666;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* --- Left Panel (Info Theme) --- */
        .info-panel {
            background-color: #ffffff; /* Text Light */
            padding: 40px;
            flex: 1 1 45%; /* Takes up less space on desktop */
            color: #004d40; /* Text Dark */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .info-panel h1 {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 40px;
            color: black; /* Primary Dark */
        }

        /* Highlight the last word of the title */
        .info-panel h1 span {
            color: black; /* Accent Bright */
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            padding: 10px;
            border-radius: 10px;
        }

        /* Hover-translate animation */
        .info-item:hover {
            transform: translateX(10px);
        }

        /* All icons now use the new specified color */
        .icon-container {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background-color: #e0f2f1; /* Background Page */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            font-size: 24px;
            color: #000000; /* NEW ICON COLOR */
        }
        
        /* Ensure the submit button icon also uses the new color */
        .submit-btn i {
            color: #000000; /* NEW ICON COLOR */
        }


        .info-content {
            flex-grow: 1;
        }

        .info-content strong {
            display: block;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #004d40; /* Primary Dark */
        }

        .info-content p {
            margin: 0;
            font-size: 16px;
            color: #4a4a4a;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .contact-container {
                /* Stacks columns vertically on mobile */
                flex-direction: column;
                max-width: 500px;
            }

            .form-panel, .info-panel {
                flex: 1 1 100%;
                padding: 30px;
            }

            .info-panel {
                padding-top: 50px; /* Add extra spacing after dark panel */
               
            }
            .form-panel {
               
            }

            .info-item {
                margin-bottom: 20px;
            }
            .modal-content {
            background-color: white;
            padding: 20px 20px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.8); /* Start smaller for bounce effect */
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
            max-width : 300px;
            position: relative; /* Crucial for positioning the close button */
            margin-inline: 20px;
        }
        
        
            
        }

        /* --- Success Modal Styling --- */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
            display: none; /* Initially hidden */
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-content {
            background-color: white;
            padding: 40px 50px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.8); /* Start smaller for bounce effect */
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
            max-width : 500px;
            position: relative; /* Crucial for positioning the close button */
        }
        
        /* Modal Active State */
        .modal-backdrop.show {
            display: flex;
            opacity: 1;
        }

        .modal-backdrop.show .modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .modal-icon {
            color: #28a745; /* NEW ICON COLOR */
            font-size: 72px;
            margin-bottom: 20px;
        }

        .modal-content h3 {
            font-size: 24px;
            font-weight: 800;
            color: #004d40; /* Primary Dark */
            margin: 0 0 10px 0;
        }

        .modal-content p {
            color: #666;
            margin: 0;
        }
        
        /* New: Modal Close Button Styling */
        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 20px;
            cursor: pointer;
            color: #051f66; /* NEW ICON COLOR */
            transition: color 0.2s;
        }

        .modal-close-btn:hover {
            color: #ff0000; /* Red on hover for clear feedback */
        }


















           @media (max-width: 768px) {
            .contact-container {
                /* Stacks columns vertically on mobile */
                flex-direction: column;
                max-width: 500px;
            }

            .form-panel, .info-panel {
                flex: 1 1 100%;
                padding: 30px;
            }

            .info-panel {
                padding-top: 50px; /* Add extra spacing after dark panel */
               
            }
            .form-panel {
                
            }

            .info-item {
                margin-bottom: 20px;
            }
            
            .map-container {
                max-width: 500px; /* Match responsive max-width */
            }
        }

        /* --- New Map Container Styling --- */
        .map-container {
            width: 100%;
            max-width: 1220px; /* Match contact-container max-width */
            margin-top: 30px; /* Spacing between form and map */
            border-radius: 20px;
            overflow: hidden; /* Ensure rounded corners clip the iframe */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for map */
            margin-bottom: 20px; /* Add space at the bottom of the map */
          margin-inline : auto;
        }

        .map-container iframe {
            width: 100%; /* Make the map responsive and match container width */
            height: 450px; /* Maintain height */
            display: block; /* Remove any inline gaps */
        }













/* Gmail CSS */
 /* Main popup container as a fullscreen overlay */
        .popup-overlay {
          position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(64 62 62 / 80%) ;

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000000000000000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 
ease-in-out, visibility 0.3s;
        }

        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Popup card style - modern, elevated, and slightly larger */
        .popup-card {
            background-color: #ffffff;
            /* Softer, more diffused shadow */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); 
            padding: 40px;
            width: 90%;
            max-width: 450px; /* Slightly wider for better content flow */
            position: relative;
            text-align: center;
            transform: translateY(30px);
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.4, 1.1); /* Smoother, bouncier transition */
        }

        .popup-overlay.show .popup-card {
            transform: translateY(0);
        }

        /* Close Button (Cross icon) - more subtle and accessible */
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #aaa;
            cursor: pointer;
            line-height: 1;
            padding: 5px; 
            transition: color 0.2s ease, transform 0.2s;
        }

        .close-btn:hover {
            color: #333;
            transform: rotate(90deg);
        }

        /* Icon for visual appeal */
        .popup-icon {
            color: #007bff;
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        /* Heading and Text - clear hierarchy */
        .popup-card h2 {
            font-size: 1.75rem;
            color: #1a1a1a; 
            margin-bottom: 8px;
            font-weight: 700;
        }
        .popup-card p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        /* Form Style - focused input */
        .email-form input[type="email"] {
            width: 100%;
            padding: 14px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
          
            box-sizing: border-box;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .email-form input[type="email"]:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
            outline: none;
        }

        /* Submit Button - primary action, clean blue */
        .email-form button {
            background-color: #1651E2;
            color: white;
            padding: 14px 25px;
            border: none;
           
            cursor: pointer;
            font-size: 1.05rem;
            font-weight: 600;
            width: 100%;
            transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
        }

        .email-form button:hover:not(:disabled) {
            background-color: #0056b3;
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
        }
        
        .email-form button:disabled {
            background-color: #a0c3e8;
            cursor: not-allowed;
        }

        /* Download Section (initially hidden) - confirmation state */
        .download-section {
            display: none;
            padding-top: 10px;
        }

        .download-section h2 {
            color: #28a745; /* Success color */
        }
        
        /* Download Button - prominent and green */
        .download-section a {
            display: block;
            background-color: #28a745;
            color: white;
            padding: 18px 20px;
            margin-top: 20px;
            
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
            transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
        }

        .download-section a:hover {
            background-color: #1e7e34;
            transform: translateY(-1px);
            box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
        }

        /* Message Box for Feedback */
        #messageBox {
            font-size: 0.9rem;
            margin-top: 15px;
            font-weight: 600;
            min-height: 20px; /* To prevent layout shift */
        }

        .message-error {
            color: #dc3545;
        }

        .message-success {
            color: #28a745;
        }

 .hidden {
            display: none !important;
        }