:root {
    --primary-color: black;
    --secondary-color: #02a45d
}
html {
    scroll-behavior: auto !important;
}
.tour-card{
    background:#fff;
    border-radius:6px;
    border:1.5px solid #f0f0f0;
    overflow:hidden;
    transition:.4s ease;
    font-family:'Segoe UI',sans-serif;
}
.tour-card:hover{
    transform:translateY(-8px);
   
}
/* ---------- CARD HOVER → TITLE ANIMATION ---------- */

/* Base title */
.tour-title{
    text-align:center;
    margin:14px 0 6px;
    font-size:13px;
    font-weight:700;
    position:relative;
}

/* Link */
.tour-title a{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#222;
    text-decoration:none;
    transition:color .35s ease, transform .35s ease;
}

/* Underline (hidden by default) */
.tour-title a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#fea312;
    transition:width .35s ease;
}

/* Arrow */
.title-arrow svg{
    width:14px;
    height:14px;
    fill:none;
    stroke:#222;
    stroke-width:2;
    transition:transform .35s ease, stroke .35s ease;
}

/* CARD hover effect */
.tour-card:hover .tour-title a{
    color:#fea312;
    transform:translateY(-2px);
}

/* Underline slide */
.tour-card:hover .tour-title a::after{
    width:100%;
}

/* Arrow motion */
.tour-card:hover .title-arrow svg{
    stroke:#fea312;
    transform:translateX(6px);
}

/* Image */
.tour-img{position:relative;overflow:hidden;}
.tour-img img{
    width:100%;
    height:300px;
    object-fit:fill;
}

/* Overlay */
.img-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
}
.tour-card:hover .img-overlay{opacity:1}

/* Plus */
.plus-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}
.plus-icon svg{
    width:20px;
    height:20px;
    fill:white;
}
.img-overlay:hover .plus-icon{
    background:#02a45d;
    transform:rotate(90deg) scale(1.1);
}

/* Shine */
.img-shine{
    position:absolute;
    top:0;
    left:-120%;
    width:40%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.25),transparent);
    transform:skewX(-20deg);
}
.tour-card:hover .img-shine{
    animation:shine .9s ease;
}
@keyframes shine{to{left:120%}}
.about-section {
   padding: 0px 0;
   background: #f9f9f9;
   overflow: hidden;
}

/* Image Wrapper */
.about-image-wrapper {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
}

/* Big Circle */
.main-img {
   width: 420px;
   height: 420px;
   border-radius: 20px; /* square with soft corners */
   overflow: hidden;
   position: relative;
   z-index: 2;
  
}

.main-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Small Image */
.small-img {
   position: absolute;
   bottom: -20px;
   right: 40px;
   width: 150px;
   height: 150px;
   border-radius: 15px; /* square with soft corners */
   overflow: hidden;
   border: 8px solid #fff;
   box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   z-index: 3;
  
}

.small-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Dotted Background */
.about-image-wrapper::before {
   content: "";
   position: absolute;
   width: 450px;
   height: 450px;
   background-image: radial-gradient(#ddd 2px, transparent 2px);
   background-size: 15px 15px;
   top: -20px;
   left: -20px;
   z-index: 1;
}

/* Content */
.about-content {
   padding-left: 40px;
}

.subtitle {
   color: #2e7d32;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 1px;
}

.about-title {
   font-size: 42px;
   font-weight: 700;
   margin: 10px 0;
   color: #0b1c39;
}



/* Text */
.about-text {
   color: #555;
   line-height: 1.7;
   font-size: 16px;
   margin-bottom: 25px;
}

/* Button */
.about-btn {
   background: #2e7d32;
   color: #fff;
   padding: 12px 30px;
   border-radius: 5px;
   text-decoration: none;
   font-weight: 500;
   transition: 0.3s;
}

.about-btn:hover {
   background: #1b5e20;
}

/* Responsive */
@media (max-width: 991px) {
   .about-content {
      padding-left: 0;
      margin-top: 40px;
   }

   .main-img {
      width: 300px;
      height: 300px;
   }

   .small-img {
      width: 100px;
      height: 100px;
      right: 10px;
   }
}


.row .col-md-12 {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Top Gradient Line */
.row .col-md-12::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #25D366, #00c6ff);
}

/* Title */
.row .col-md-12::after {
    content: "Basic Information";
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* Hover Effect */
.row .col-md-12:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* Table Style */
.row .col-md-12 table {
    width: 100%;
    border-collapse: collapse;
}

/* Rows */
.row .col-md-12 tr {
    transition: 0.3s;
}

/* Alternate row bg */
.row .col-md-12 tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}

/* Hover row */
.row .col-md-12 tr:hover {
    background: rgba(37, 211, 102, 0.08);
}

/* Left Text */
.row .col-md-12 td:first-child {
    font-weight: 600;
    color: #333;
    padding: 14px 10px;
}

/* Right Text */
.row .col-md-12 td:last-child {
    text-align: right;
    color: #000000;
    font-weight: 600;
    padding: 14px 10px;
}

/* Divider line */
.row .col-md-12 tr:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
/* Wrapper */
.contact-box-wrap {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Box */
.contact-box {
    display: flex;
    align-items: center;
    background: #F2F2F2;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 220px;
    
}

/* Icon */
.contact-box .icon {
    width: 50px;
    height: 50px;
    background: #EE2F5A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-box .icon i {
    color: #fff;
    font-size: 18px;
}

/* Text */
.contact-box .info span {
    font-size: 13px;
    color: #666;
}

.contact-box .info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Button */
.quote-btn {
    display: inline-block;
    margin-top: 20px;
    background: #EE2F5A;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #EE2F5A;
}
/* ICON FIX */
.contact-box .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;   /* IMPORTANT */
    border-radius: 50%;
    background: #e63946; /* red like screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ICON STYLE */
.contact-box .icon i {
    color: #fff;
    font-size: 18px;
}
/* Content */
.tour-content h3{
    font-size:15px;
    font-weight:700;
    text-align:center;
    margin:0px 0 6px;
    color:#222;
}

/* Footer Button */
.tour-footer{
    border-top:1px solid #eee;
}

/* Button base */
.btn-call{
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background: #02a45d;
    padding:8px 0;
    font-size:14px;
    font-weight:600;
    color:white;
    text-decoration:none;
    overflow:hidden;
    transition:color .35s ease;
}

/* Icon */
.btn-call svg{
    width:18px;
    height:18px;
    fill:#02a45d;
    transition:transform .35s ease, fill .35s ease;
}

/* Text animation wrapper */
.btn-call span{
    display:inline-block;
    transition:transform .35s ease;
}

/* Hover – clean & hatke */
.btn-call:hover{
    color:#25D366; /* WhatsApp brand hint */
}

/* Text slide right */
.btn-call:hover span{
    transform:translateX(6px);
}

/* Icon slight move left */
.btn-call:hover svg{
    fill:#25D366;
    transform:translateX(-4px);
}
.catalog-section{
    padding:60px 0;
    background:#fff;
}



  .about-section {
   padding: 0px 0;
   background: #f9f9f9;
   overflow: hidden;
}

/* Image Wrapper */
.about-image-wrapper {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
}

/* Big Circle */
.main-img {
   width: 420px;
   height: 420px;
   border-radius: 20px; /* square with soft corners */
   overflow: hidden;
   position: relative;
   z-index: 2;
  
}

.main-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Small Image */
.small-img {
   position: absolute;
   bottom: -20px;
   right: 40px;
   width: 150px;
   height: 150px;
   border-radius: 15px; /* square with soft corners */
   overflow: hidden;
   border: 8px solid #fff;
   box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   z-index: 3;
  
}

.small-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Dotted Background */
.about-image-wrapper::before {
   content: "";
   position: absolute;
   width: 450px;
   height: 450px;
   background-image: radial-gradient(#ddd 2px, transparent 2px);
   background-size: 15px 15px;
   top: -20px;
   left: -20px;
   z-index: 1;
}

/* Content */
.about-content {
   padding-left: 40px;
}

.subtitle {
   color: #2e7d32;
   font-weight: 600;
   font-size: 14px;
   letter-spacing: 1px;
}

.about-title {
   font-size: 42px;
   font-weight: 700;
   margin: 10px 0;
   color: #0b1c39;
}



/* Text */
.about-text {
   color: #555;
   line-height: 1.7;
   font-size: 16px;
   margin-bottom: 25px;
}

/* Button */
.about-btn {
   background: #2e7d32;
   color: #fff;
   padding: 12px 30px;
   border-radius: 5px;
   text-decoration: none;
   font-weight: 500;
   transition: 0.3s;
}

.about-btn:hover {
   background: #1b5e20;
}

/* Responsive */
@media (max-width: 991px) {
   .about-content {
      padding-left: 0;
      margin-top: 40px;
   }

   .main-img {
      width: 300px;
      height: 300px;
   }

   .small-img {
      width: 100px;
      height: 100px;
      right: 10px;
   }
}

/* Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Card */
.why-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;

    /* HEAVY SHADOW */
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08),
        0 50px 100px rgba(0,0,0,0.15),
        0 100px 200px rgba(0,0,0,0.20);
}
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #E63946, #ff6b6b);
    color: #fff;
    font-size: 26px;

    box-shadow: 0 15px 40px rgba(230,57,70,0.4);
}
.why-card:hover {
    box-shadow:
        0 40px 80px rgba(0,0,0,0.2),
        0 100px 200px rgba(0,0,0,0.35),
        0 0 50px rgba(230,57,70,0.3);
}
/* Section spacing */
.products {
    background: #fffbf1;
}

/* Card main box */
.bxpp11 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding-bottom: 15px;
    position: relative;
}

/* Hover effect */
.bxpp11:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image styling */
.bxpp11 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 16px 16px 0 0;
}

/* Title */
.bxpp11 h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    padding: 10px 15px 5px;
    text-align: left;
    min-height: 48px;
}

/* Add rating (fake star using before) */
.bxpp11 h3::after {
    content: " ⭐ 4.7 (2.7K Reviews)";
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 5px;
    font-weight: 400;
}

/* Buttons container */
.bxpp11::before {
    content: "";
    display: block;
    height: 1px;
    background: #eee;
    margin: 10px 15px;
}

/* Buttons */
.bxpp11 a::after {
    content: "Call Now";
    display: inline-block;
    background: #ff3b3b;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin: 10px 8px 0 15px;
}

/* WhatsApp button */
.bxpp11 a::before {
    content: "WhatsApp";
    display: inline-block;
    background: #ff3b3b;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
}

/* Badge (Best Seller / New) */
.bxpp11::after {
    content: "Best Seller";
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

  
  .products-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9fafc;
}

.section-header {
    max-width: 700px;
    margin: auto;
}

.sub-title {
    color: #ff3b3b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.main-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff3b3b;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}
.card-link {
    text-decoration: none;
}

/* Card */
.product-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hover Effect */
.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Image */
.img-box {
    background: #f9f9f9;
    padding: 20px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: 0.4s;
}

.product-card-modern:hover img {
    transform: scale(1.1);
}

/* Content */
.content {
    padding: 15px;
    text-align: center;
}

.content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}


/* Badge */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6600;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}
.about-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* Content Box */
.about-content {
    transition: 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
}

/* Title */
.about-title {
    font-size: 33px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 20px;
}

/* Text */
.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 2px 25px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: linear-gradient(135deg, #d62828, #ff4d4d);
}

/* Image Styling */
.about-image {
    position: relative;
    padding: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        margin-bottom: 30px;
    }
}
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fc, #eef2f7);
}

/* Title */
.section-title h6 {
    font-size: 34px;
    font-weight: 700;
    color: #e63946;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* Card */
.why-card {
    background: rgba(255, 255, 255, 0.8);
border:2px solid red;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-top: 30px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.why-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* Text */
.why-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-card {
        margin-top: 20px;
    }
}
   
   .funfact-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
}

/* Card */
.funfact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 40px 20px;
    border-radius: 20px;
    margin-top: 20px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.2);
}

.funfact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    color: #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.funfact-card:hover .icon-box {
    transform: rotate(15deg) scale(1.1);
}

/* Counter */
.funfact-card h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Text */
.funfact-card p {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .funfact-card {
        margin-top: 15px;
    }
}

   .products-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffaf2, #fdf6ec);
}

/* Title */
.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    margin-bottom: 40px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.4s;

    /* Premium multi-layer shadow */
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.08),
        0 20px 50px rgba(0,0,0,0.12),
        0 30px 80px rgba(0,0,0,0.15);
}

.product-card:hover {
    transform: translateY(-12px);

    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 30px 80px rgba(0,0,0,0.18),
        0 40px 120px rgba(0,0,0,0.25);
}
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover::after {
    opacity: 1;
}

/* Image */
.product-img {
    overflow: hidden;
}
.product-card:hover img {
    transform: scale(1.1);
}

/* Content */
.product-content {
    padding: 15px;
    text-align: center;
}

.product-content h3 {
    font-size: 16px;
    font-weight: 600;
}

/* Badge */
.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

/* Link remove */
.product-link {
    text-decoration: none;
    color: inherit;
}
.cta-parallax {
    position: relative;
    padding: 100px 0;
    background: url('your-image.jpg') center/cover fixed no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
.cta-parallax .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.85), rgba(0,0,0,0.8));
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px;
    border-radius: 20px;

    /* Glass effect */
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Heading */
.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Paragraph */
.cta-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #e63946;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #e63946;
    color: #fff;
}

/* Hover animation */
.cta-content:hover {
    transform: translateY(-5px);
    transition: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 24px;
    }
}
  /* contact us Section Box */
/* Main Form Box */
.col-xl-6 {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;

    /* 🔥 Deep Multi-Layer Shadow */
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.12),
        0 40px 80px rgba(0,0,0,0.10),
        0 60px 120px rgba(0,0,0,0.08);

    border: none !important;
}

/* Heading */
.col-xl-6 h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color:#EE2F5A;
}

/* Paragraph */
.col-xl-6 p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input Fields */
.form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f9fafc;
    padding: 10px 15px;
    font-size: 14px;

    transition: all 0.3s ease;
}

/* Textarea */
textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: none;
}

/* Focus Effect */
.form-control:focus {
    border-color: #E63946;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
    outline: none;
}

/* Spacing */
.form-group {
    margin-bottom: 20px;
}

/* Button */
.animate-btn-style3 {
    background: #E63946;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;

    transition: all 0.3s ease;
}

/* Button Hover */
.animate-btn-style3:hover {
    background: #c92f3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230,57,70,0.3);
}

/* reCAPTCHA spacing */
.g-recaptcha {
    margin-bottom: 20px;
}
.contact-card {
  background: #f4f4f4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.contact-header {
  background: #EE2F5A;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
}

/* Grid layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Items */
.contact-item {
  text-align: center;
  padding: 25px 15px;
  border: 1px solid #ddd;
}

/* Remove double borders */
.contact-item:nth-child(1),
.contact-item:nth-child(2) {
  border-top: none;
}

.contact-item:nth-child(1),
.contact-item:nth-child(3) {
  border-left: none;
}

/* Icons */
.icon {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Text */
.contact-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* Hover effect (premium feel) */
.contact-item:hover {
  background: #fff;
  transition: 0.3s;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
    
.gettouch{
    box-shadow:none !important;
    background-color: none!important;
    overflow-x:hidden !important;
    
}
.custom-border {
  border: 2px solid #000;
  overflow-x: hidden;
  border-radius: 6px; /* optional */
}

  .btn-group {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding: 10px 15px 15px;
}

.btn-custom {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #EE2F5A, #EE2F5A);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}
.section-title p {
    font-size: 24px;
    font-weight: 700;
    color: #e63946;
}

.section-title h3 {
    color: #666;
   
}

/* Hover */
.btn-custom:hover {
    background: linear-gradient(135deg, #EE2F5A, #EE2F5A);
    transform: scale(1.05);
}

/* CARD STRUCTURE */
.bxpp11 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* IMAGE */
.bxpp11 img {
    height: 200px;
    object-fit: contain;
}

/* TEXT */
.bxpp11 h3 {
    min-height: 48px;
}

.bxpp11 p {
    min-height: 24px;
    margin-bottom: 10px;
}

/* BUTTON COMMON */
.bxpp11 button {
    border: none;
    border-radius: 8px;
    padding: 10px;
    background: #ff3b5c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER */
.bxpp11 button:hover {
    background: #e6003d;
}

/* CASE 1: BUTTONS WITHOUT GROUP (STACK FIX) */
.bxpp11 > button {
    width: 100%;
    margin-top: 5px;
}

/* CASE 2: BUTTONS WITH GROUP (SIDE BY SIDE FIX) */
.bxpp11 .btn-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.bxpp11 .btn-group button {
    flex: 1;
    width: 50%;
}

/* FORCE ALL BUTTONS TO BOTTOM */
.bxpp11 .btn-group,
.bxpp11 > button:last-child {
    margin-top: auto;
}

/* CARD FLEX */
.bxpp11 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* BUTTON RESET */
.bxpp11 button {
    border: none;
    border-radius: 8px;
    padding: 10px;
    background: #ff3b5c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* FORCE BUTTONS IN ROW (EVEN WITHOUT .btn-group) */
.bxpp11 {
    gap: 5px;
}

/* TARGET LAST 2 BUTTONS */
.bxpp11 button {
    width: 48%;
}

/* WRAP BUTTONS AUTOMATICALLY */
.bxpp11 {
    flex-wrap: wrap;
}

/* FIX BUTTON ALIGNMENT */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    display: inline-block;
}

/* FORCE ROW */
.bxpp11 button {
    display: inline-block;
}

/* ALIGN SIDE BY SIDE */
.bxpp11 button:nth-last-child(2) {
    margin-right: 4%;
}

/* PUSH BUTTONS TO BOTTOM */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    margin-top: auto;
}

/* CARD FIX */
.bxpp11 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TEXT AREA */
.bxpp11 h3 {
    min-height: 48px;
}

.bxpp11 p {
    margin-bottom: 10px;
}

/* BUTTON CONTAINER AUTO CREATE EFFECT */
.bxpp11 button {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 10px;
    background: #ff3b5c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* FORCE BUTTON ROW */
.bxpp11 {
    justify-content: space-between;
}

/* BUTTON WRAP FIX */
.bxpp11 button {
    width: 48%;
}

/* ALIGN BOTH BUTTONS IN ONE ROW */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    display: inline-block;
}

/* GAP BETWEEN BUTTONS */
.bxpp11 button:nth-last-child(2) {
    margin-right: 4%;
}

/* PUSH BUTTONS TO BOTTOM */
.bxpp11 button:nth-last-child(2),
.bxpp11 button:last-child {
    margin-top: auto;
}

/* HOVER */
.bxpp11 button:hover {
    background: #e6003d;
}
.para:hover{
    color:#EE2F5A;
    font-weight:500;
}