/* Reset & Basic Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts: 'Open Sans' (body) & 'Poppins' (headings) */
body {
  font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
/*  'Open Sans', sans-serif;*/
  background: #fafafa;
  color: #212529;
  line-height: 1.6;
}
/* ====== HEADER ====== */
/**/ 
  .sticky-header {
    position: sticky;
    top: 0;                /* The header sticks once it touches the top of the viewport */
    background-color: #fff;
    z-index: 999;          /* Ensure the header is on top of other elements */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
}

/* For demo: give the header some space */
.sticky-header h1, .sticky-header nav {
  margin: 0;
  padding: 1rem;
}

/* Container for header content */
.header-container {
  display: flex;         /* Use flexbox to align logo and button on same row */
  align-items: center;   /* Vertically center items */
  justify-content: space-between; /* Logo on left, button on right */
  max-width: 1200px;     /* Adjust to your preferred max width */
  margin: 0 auto;        /* Center the header container */
  padding: 1rem 1.5rem;  /* Spacing around the content */
}

/* Logo styling (optional) */
.logo img {
  height: 50px;          /* Adjust as needed */
  width: auto;
}

/* Action button styling */
.action-button .btn {
  display: inline-block;
  background-color: #007BFF;  /* Change to suit your design */
  color: #fff;
  padding:0.2rem 0.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.action-button .btn:hover {
  background-color: #0056b3;  /* Darker shade on hover */
}

/* ======= Container & Overlay ======= */
/* Container to center the content (optional) */
     


.fancy-paragraph-section {
  position: relative;
  width: 100%;
  min-height: 30vh; /* Adjust for desired section height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensures backgrounds don’t overflow */

  /* Soft background gradient #cbebff  fcb27b*/
  background: linear-gradient(180deg,#f36700 0%, #f0f9ff 80%);
}
.fancy-paragraph-section {
  /* Example background settings */
  background: url("images/aboutus1.jpg") no-repeat center center;
  background-size: cover;
  
  /* The key property for a sticky background */
  background-attachment: fixed;
  
  /* Ensure there’s enough content or height to see the effect */
  min-height: 50vh;
}
/*
.fancy-paragraph-section {
  background: linear-gradient(45deg, #a900ff, #ff0099);
  background-attachment: fixed;
  min-height: 100vh;
}*/

/* 
  Semi-transparent overlay to create a "frosted" effect 
  above the gradient background 
*/
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1px); /* For the frosted-glass look */
  z-index: 1;
}

/* ======= Content Wrapper ======= */
.content-wrapper {
  position: relative; /* Stays above the overlay */
  z-index: 2;
  max-width: 1000px;
  padding: 2rem;
  margin: 2rem;
  text-align: center;

  /* Subtle box shadow to separate content from background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

/* ======= Heading & Paragraph ======= */
.content-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #105545;
}

.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* ======= Responsive Tweaks ======= */
@media (max-width: 600px) {
  .content-wrapper {
    margin: 1rem;
    padding: 1.5rem;
  }

  .content-wrapper h2 {
    font-size: 1.8rem;
  }

  .content-wrapper p {
    font-size: 1rem;
  }
}

/* ====== CONTACT SECTION ====== */
.contact-section {
  text-align: center;
  padding: 2rem 1rem;
 /* background: linear-gradient(60deg, #b12cff, #ff2c70);
  background:linear-gradient(90deg, #5a005a, #741f3a);*/
  background:linear-gradient(90deg, #f36700, #741f3a);
 /* background:#fff;*/
}
.wlogo{width: 4rem; height: auto; margin-right: 10px;}
.elogo{width: 2rem;
    transform: translateY(15%);height: auto; margin-right: 10px;
}
@media (max-width: 600px) {
  .wlogo {
    width: 2rem; height: auto; margin-right: 10px;   
  justify-content: center;
  }
}
.phone-number {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.phone-number a{ text-decoration:none; color:white;}
.phone-number a:active { color: white; } 
.email { 
 font-size: 1.5rem;
  text-decoration: underline;
  color:#ffeaf2 /* #5a005a;*/
     
}

/* ====== 3 tile INFOGRAPHIC ====== */

/* Overall Section Styling */
.three-tiles-section {
  max-width: 1200px; /* Adjust based on your design */
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Heading */
.three-tiles-section h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #105545;
}

/* Tiles Wrapper: Using a responsive CSS Grid */
.tiles-wrapper {
  display: grid;
  gap: 20px;
  /* 
   * auto-fit: Fits as many columns as possible
   * minmax(250px, 1fr): 
   *   - Each column is at least 250px wide
   *   - If there's more space, it expands up to 1 fraction (i.e., fill the row)
   */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Individual Tile Container */
.tile {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden; /* Ensures rounded corners apply to the image */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tile Image */
.tile img {
  width: 100%;
  height: auto;
  display: block;
}
/* Container for the "bubble" keywords */
.keyword-cloud {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

/*  Each keyword is displayed inline so it flows to the next line when space runs out. */
.keyword {
  display: inline-block;
  margin: 8px;
  padding: 10px 20px;
  
  /* Make it pill-shaped by rounding corners */
  border-radius: 9999px;

  /* 
    Basic styling: 
    - White text color on a colored background
    - Bold text 
    - Subtle box shadow
  */
  background-color: #5c6bc0; /* A default background color */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-family: Arial, sans-serif;
  cursor: default;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);

  /* Slight rotation or scale on hover for interactivity */
  transition: transform 0.2s, background-color 0.2s;
}

.keyword:hover {
  transform: scale(1.1) rotate(3deg);
  background-color: #3949ab; /* Darker shade on hover */
}

/* Pseudo-random variation using nth-child:
  - Different background colors 
  - Subtle rotation to avoid a stiff layout
*/
.keyword:nth-child(3n+1) {
  background-color: #66bb6a; /* green-ish */
  transform: rotate(-2deg);
}
.keyword:nth-child(3n+2) {
  background-color: #fb720d; /* red-ish ef5350 */
  transform: rotate(2deg);
}
.keyword:nth-child(3n) {
  background-color: #5c6bc0; /* default purple-ish */
  transform: rotate(-1deg);
}

/* 
  More variation: 
  Use nth-child() for slight size changes or offsets 
  (uncomment if you want more randomness)
*/
/*
.keyword:nth-child(4n) {
  padding: 12px 24px;
}
.keyword:nth-child(5n) {
  transform: rotate(3deg);
  margin-top: 16px;
}
*/

/* 
  Responsive: for smaller screens, reduce padding or font size
  so bubbles don't become too large.
*/
@media (max-width: 600px) {
  .keyword {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* ====== 4-STEP INFOGRAPHIC ====== */
.infographic-section {
  text-align: center;
  padding: 1rem 1rem;
  background: #fff; 
  /*background: linear-gradient(90deg, #5a005a, #741f3a);*/
}

.infographic-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color:#105545; /*  #5a005a A deeper purple for text */
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.step {
  text-align: center;
  
}

.step-img {
  width: 70px;
  height: auto;
  margin-bottom: 0.5rem;
  Height:153px;
}

.step p {
  color: #fff; /*555; */
  font-size: 1rem;
}

.arrow {
  width: 40px;
  height: auto;
}

/* ====== NRI SERVICES SECTION ====== */
.nri-services-section {
  text-align: center;
  padding: 1rem 1rem;
  /* background: linear-gradient(60deg, #ff5eae, #ffc3d8);
  background: linear-gradient(90deg, #5a005a, #741f3a);*/
  background: #fff;
  color: #105545;
}

.nri-services-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.moving-image {
  width: 1300px; /* adjust as needed for "big" width on desktop; it's responsive */
  max-width: 90%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
  /*box-shadow: 0 4px 8px rgba(0,0,0,0.2);*/
}

.nri-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
.fancy-paragraph { 
  background-color: #fff; 
  padding: 0.8rem;
  margin: 1rem auto;
  max-width: 600px; /* Limit width so the text is easier to read */
  border-left: 5px solid #fb720d; /* A colored border on the left */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  line-height: 1.6;  /* Spacing between lines */
  border-radius: 4px; /* Slightly round corners */
  font-size: 1rem;  /* Adjust text size */
}
.fancy-paragraph a {
  color: #5c6bc0;
  text-decoration: none;
}
.fancy-paragraph a:hover {
  text-decoration:none;
  color:#fb720d;
} 
 

/* ====== FOOTER ====== */
.footer-section {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  border-top: 3px solid #eee;
  background:#04463a;/*#5a005a;#04463a;*/
}
.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.mission {
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  color: #fff;/*#666;*/
  font-size: 1rem;
  line-height: 1.5;
}

/* Social Icons */
.social-icons {
  margin-bottom: 1.5rem;
}

.social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Links (4) */
.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  margin: 0 0.75rem;
  color: #aaa;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* App Links (2) */
.app-links {
  margin-bottom: 1.5rem;
}

.app-links .app-link {
  margin: 0 0.75rem;
  text-decoration: none;
  background:#ef6703;/* #b12cff;*/
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.app-links .app-link:hover {
  background: #8e00e6;
}

.footer-note {
  font-size: 0.85rem;
  color: #666;
}

/* ====== GO UP BUTTON ====== */
#goUpBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ef6703;
  color: #fff;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
  display: none; /* hidden by default */
  z-index: 999;
}

#goUpBtn:hover {
  background: #8e00e6;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 768px) {
  .phone-number {
    font-size: 2rem;
  }

  .steps-container {
    flex-direction: column;
  }

  .arrow {
    display: none; /* Hide arrows on small screens if it looks cluttered, optional */
  }

  .moving-image {
    width: 90%;
  }
}
/*------------------aboutus----------------* /
   body {
          font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background: linear-gradient(to bottom, #ffffff, #f2f2ff);
            overflow-x: hidden;
        }*/
        .container_aboutus {
            max-width: 1200px;
            margin: 0 auto;
        }
        .container_aboutus section {
            padding: 60px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-size: cover;
            background-position: center;
            color: #333;
            text-align: center;
        }
        .container_aboutus section:nth-child(even) {
            background: linear-gradient(to right, #b2dba2c4, #b2dba2c4), url('/images/A1.png') no-repeat center/cover;
        }
        .container_aboutus section:nth-child(odd) {
            background: linear-gradient(to right, #f0c2a0c9, #f0c2a0c9), url('/images/A1.png`') no-repeat center/cover;
        }
        .container_aboutus .content_au {
            max-width: 800px;
            padding: 20px;
            background: #e9dbdb80;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .content_au h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        .content_au p {
            font-size: 1.2em;
            margin-bottom: 0;
            animation: fadeInUp 1.5s ease;
        }
        /* Get Started Section */
        .get-started {
            background: linear-gradient(to right, #ff6f00, #ffa726);
            color: #04463a;
        }
        .get-started .content_au {
            background: none;
            box-shadow: none;
        }
        .get-started button {
            margin-top: 20px;
            background-color: white;
            color: #ff6f00;
            border: none;
            padding: 12px 25px;
            font-size: 1.2em;
            border-radius: 25px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
        }
        .get-started button:hover {
            background-color: #ff6f00;
            color: white;
            transform: translateY(-3px);
        }
        /* Floating Shapes */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            opacity: 0.7;
            z-index: -1;
        }
        .floating-shape:nth-child(1) {
            background: #ff6f00;
            width: 150px;
            height: 150px;
            top: 850px;
            right: 10%;
        }
        .floating-shape:nth-child(2) {
            background: #ff4081;
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: 20%;
        }
        .floating-shape:nth-child(3) {
            background: #1e88e5;
            width: 120px;
            height: 120px;
            top: 150px;
            right: 15%;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .content_au h2 {
                font-size: 2em;
            }
            .content_au p {
                font-size: 1em;
            }
            .get-started button {
                font-size: 1em;
                padding: 10px 20px;
            }
        }

/*-------------------Terms of Service----------------* /
 .container_ts h1, h2, h3 {
      margin-top: 2rem;
      margin-bottom: 1rem;
    }
    .container_ts p, ul, ol {
      margin-bottom: 1rem;
    }
    .container_ts ul li{
		margin-left: 50px;
		float: left;
	}
    .container_ts {
      max-width: 800px;
      margin: 10px 20px;
	  
	   background: linear-gradient(to right, #b2dba2c4, #b2dba2c4), url('images/A1.png') no-repeat center/cover;
    }*/
    .container_ts .last-updated {
      color: #555;
      font-size: 0.9rem;
    }
/*-------------------Privacy Policy----------------*/
 /* Base Reset / Box-Sizing */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Container */
    .container_pp , .container_ts {
      max-width: 900px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    /* Headings */
    h1, h2, h3 {
      margin-bottom: 1rem;
      font-weight: 600;
      color: #343a40;
    }

    h1 {
      font-size: 2rem;
      margin-top: 0;
    }
    h2 {
      font-size: 1.4rem;
      margin-top: 2rem;
    }
    h3 {
      font-size: 1.2rem;
      margin-top: 1.5rem;
    }

    /* Paragraphs, Lists, etc. */
    p {
      margin-bottom: 1rem;
      font-size: 1rem;
    }
    ul, ol {
      margin-bottom: 1rem;
      margin-left: 1.5rem;
    }
    li {
      margin-bottom: 0.5rem;
    }
    address {
      margin-top: 0.5rem;
      font-style: normal;
      line-height: 1.4;
    }

    /* Links */
    a {
      color: #007bff;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

    /* Last Updated */
    .last-updated {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 2rem;
    }

    /* Responsive Media Queries */
    @media (max-width: 768px) {
      .container_ts, .container_pp {
        margin: 1rem;
        padding: 1.5rem;
      }
      h1 {
        font-size: 1.75rem;
      }
      h2 {
        font-size: 1.25rem;
      }
      p, ul, ol, li, address {
        font-size: 0.95rem;
      }
    }
/*-------------------chatbot----------------*/

#chatbot-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 300px;
        border: 1px solid #ccc;
        border-radius: 10px;
        background: #fff;
        font-family: Arial, sans-serif;
    }
    #chat-window {
        display: flex;
        flex-direction: column;
        height: 400px;
        padding: 10px;
    }
    #messages {
        flex: 1;
        overflow-y: auto;
        margin-bottom: 10px;
    }
    #user-input {
        padding: 10px;
        flex: none;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    #send-btn {
        margin-left: 5px;
        padding: 10px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 5px;
    }
/*****************contact page*********************/
.container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #444;
  font-size: 1.8rem;
  text-align: center;
}

p.intro {
  margin-bottom: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: #0066cc;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.row div {
  flex: 1;
}

.radio-group,
.checkbox-group {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

button[type="submit"] {
  background-color: #0066cc;
  color: #fff;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: center;
}

button[type="submit"]:hover {
  background-color: #004da5;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}
