/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Header & Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 100;
  position: relative;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn {
  text-decoration: none;
  color: white;
  background: #1e3c72;
  padding: 8px 18px;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-btn:hover {
  background: #f4b400;
  color: #0a2540;
}

#burger-menu{
  display: none;
  cursor: pointer;
}
#burger-menu i{
  font-size: 22px;
  color: white;
}
.Mobile-nav{
  display: none;
  position: absolute;
  top: 0;
  left: -120%;
  width: 100vw;
  height: 100vh;
  background-color: white;
  padding: 10px;
  transition: all .6s;
}
#Close-button i{
  color: black;
  font-size: 35px;
  position: absolute;
  top: 10px;
  right:20px;
  cursor: pointer;
}
.Mobile-nav-open{
  left:0;
}
.Mobile-NavList{
  margin-top: 50px;
  width:100%;

}

.Mobile-Nav-Button{
  color: black;
  text-decoration: none;
  display: block;
  padding:12px 10px;
  border-bottom: 1px solid rgb(137, 137, 137);
  
}
#mob-pdf-download{
  display: inline-block;
  margin-top:10px;
  padding: 10px;
}

/* Sections */
.section {
  padding: 80px 20px;
  text-align: center;
  background: white;
  margin: 20px auto;
  border-radius: 15px;
  width: 80%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.section h2 {
  margin-bottom: 15px;
  color: #0a2540;
}

.section ul {
  list-style: none;
  margin-top: 10px;
}

.section ul li {
  margin: 8px 0;
  color: #555;
}

/* WhatsApp Floating Capsule */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-weight: 500;
  transition: 0.3s ease-in-out;
  z-index: 999;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: white;
}


/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0a2540;
  color: white;
}

footer .social {
  margin-bottom: 10px;
}

footer .social a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  transition: 0.3s;
}

footer .social a:hover {
  color: #f4b400;
}

/* Responsive */
@media (max-width: 850px) {


  nav ul {
    display: none;
  }
#burger-menu, .Mobile-nav{
  display: block;
}

  .section {
    width: 90%;
  }
}
/*home page design by me/
/* Static Home Section */
.home-section {
  background-color: #2e2e2e; /* Dark Grey */
  width: 100%;
  height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
#homepara{
  color:white;
  font-weight:normal;
  font-size: 18px;
}

.banner-text h1 {
  font-size: 3rem;
  color: white;
  font-weight: bold;
  line-height: 1.4;
}

.banner-text .highlight {
  color: #df6800; /* Orange for Gift Boldly */
}

/*About us design*/
.about-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.about-text {
  flex: 1;
  max-width: 600px; /* Keeps text in smaller, readable column */
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-icons {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 2.8rem;
}

.about-icons i {
  color: #ff6600; /* Orange icons */
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-icons i:hover {
  transform: scale(1.2);
  color: #e55a00;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-icons {
    flex-direction: row;
    margin-top: 30px;
  }
  .Right-Icons-div{
    display: flex;
    gap:20px;
    margin-top: 20px;
    align-items: center;
  }
}
/*take icons cloer to text*/
.about-icons {
  position: relative;
  right: 30px; /* adjust space from right */
}

.about-icons i {
  color: orange;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.about-icons i:hover {
  transform: scale(1.2);
  color: darkorange;
}
/*new code for about icons*/


.highlight {
 
  padding: 10px 0; /* reduced padding so they align neatly */
  transition: 0.3s ease;
  text-align: left; /* or center if preferred */
}

.highlight:hover i {
  transform: scale(1.2);
  color: #f8a239; /* orange highlight on hover */
}

.highlight i {
  font-size: 2.5rem;
  color: #df6800; /* gold tone for premium feel */
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.highlight h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 5px;
  font-weight: 600;
}

.highlight p {
  font-size: 0.95rem;
  color: #555;
}




/*solutions*/
/* Our Services Section */
.services-section {
  background: white;
  padding: 100px 50px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.3rem;
  color: #0a2540;
  margin-bottom: 15px;
}

.services-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Service Card */
.service-card {
  background: #f9f9f9;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
  animation: fadeUp 1.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 40px;
  color: #f4b400;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #0a2540;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}
/*corporate gifts design/
/* Corporate Gifts Section */
.corporate-section {
  background: #f9f9f9;
  padding: 100px 50px;
  text-align: center;
}

.corporate-section h2 {
  font-size: 2.3rem;
  color: #0a2540;
  margin-bottom: 15px;
}

.corporate-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Gift Grid Layout */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Gift Card */
.gift-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: white;
  animation: fadeUp 1.5s ease;
}

.gift-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gift-card:hover img {
  transform: scale(1.1);
}

/* Gift Info */
.gift-info {
  padding: 20px;
  text-align: center;
}

.gift-info h3 {
  font-size: 1.2rem;
  color: #0a2540;
  margin-bottom: 8px;
}

.gift-info p {
  font-size: 0.95rem;
  color: #555;
}

/* Animation Reuse */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}
/*contact us page /
/* Contact Us Section */
.contact-section {
  background: white;
  padding: 100px 50px;
  text-align: center;
}

.contact-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.contact-section h2 {
  font-size: 2.3rem;
  color: #0a2540;
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInLeft 1.5s ease;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f4b400;
}

.contact-form button {
  background: #0a2540;
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f4b400;
  color: #0a2540;
}

/* Contact Info */
.contact-info {
  text-align: left;
  animation: fadeInRight 1.5s ease;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0a2540;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.contact-info i {
  color: #f4b400;
  margin-right: 8px;
}

/* Map */
.map-container {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-50px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}
/*our clientele/
/* Our Clientele Section */
.clientele-section {
  background: #ffffff;
  padding: 100px 50px;
  text-align: center;
  overflow: hidden;
}

.clientele-section h2 {
  font-size: 2.5rem;
  color: #0a2540;
  margin-bottom: 20px;
}

.clientele-intro {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Slider Container */
.clientele-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Increase logo size by increasing flex-basis */
.slide-track {
  display: flex;
  width: calc(300px * 12); /* Adjust width for larger logos */
  animation: scrollLogos 30s linear infinite;
}

.client-logo {
  flex: 0 0 300px; /* bigger container for logos */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.client-logo img {
  max-width: 220px;  /* bigger logos */
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.1); /* smooth zoom on hover */
}

/* Keyframes for Continuous Scrolling */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-track {
    width: calc(180px * 12);
  }
  .client-logo {
    flex: 0 0 180px;
    padding: 15px;
  }
  .client-logo img {
    max-width: 120px;
    max-height: 60px;
  }
}
/*down arrow code*/
.nav-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  text-decoration: none;
  color: white; /* Match navbar text */
  vertical-align: middle;
  border: 1px solid white;
  padding: 8px;
  border-radius:100%;
  transition: all 100ms;
}

.nav-download-link:hover {
  scale: 1.2;
  border-color: orange;
  
}

.icon-download {
  width: 20px;
  height: 20px;
}
/*RUNNING TAGLINE*/
.running-tagline {
  width: 100%;
  background: #333; /* dark grey background */
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
}

.tagline-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
  font-size: 16px;
  color: #fff;
}

.highlight {
  color: rgb(238, 106, 6);
  font-weight: bold;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/*developed by*/
.developer-credit {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc; /* Light grey for subtlety */
  margin-top: 10px;
}

.developer-credit span {
  color: #ff6a00; /* Highlight color for your name */
  font-weight: 600;
}
/* Success Popup Styling */
.success-popup {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: fadeIn 0.8s ease-in-out;
}

.success-popup p {
  color: #28a745;
  font-size: 1.2rem;
  margin-top: 12px;
  font-weight: bold;
}

/* Checkmark Animation */
.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #28a745;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px #28a745;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #28a745;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}
@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
  100% { box-shadow: inset 0px 0px 0px 30px #fff; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/*NEW THEME CODE*
/* Theme overrides: Black / Grey / Orange
   Place this AFTER your main stylesheet so it only changes colors. */

:root{
  --brand-black: #0b0b0b;      /* deep black for header/footer/buttons */
  --brand-dark:  #2f3438;      /* dark grey for nav buttons and panels */
  --brand-mid:   #6b7280;      /* muted grey text */
  --brand-light: #f4f5f7;      /* page background (very light grey) */
  --brand-accent:#ff6a00;      /* orange accent */
  --on-accent:   #0b0b0b;      /* text color on orange (dark) */
  --card-bg:     #ffffff;      /* card/section background (keep white) */
}

/* page background & base text */
body {
  background: var(--brand-light) !important;
  color: var(--brand-black) !important;
}

/* Header / Navbar */
header {
  background: var(--brand-black) !important;
}
.nav-btn {
  background: var(--brand-dark) !important;
  color: #fff !important;
  border-radius: 50px;
}
.nav-btn:hover {
  background: var(--brand-accent) !important;
  color: var(--on-accent) !important;
}

/* small download arrow (navbar icon) */
.nav-download-link { color: #fff !important; }
.nav-download-link:hover { color: var(--brand-accent) !important; }

/* Sections */
.section {
  background: var(--card-bg) !important;
  color: var(--brand-black) !important;
}
.section h2,
.services-section h2,
.corporate-section h2,
.clientele-section h2,
.contact-section h2,
.about-content h2 {
  color: var(--brand-black) !important;
}

/* Muted paragraph / list text */
.section p,
.section ul li,
.services-intro,
.corporate-intro,
.clientele-intro,
.contact-intro {
  color: var(--brand-mid) !important;
}

/* Service card icon color -> orange accent */
.service-card i { color: var(--brand-accent) !important; }

/* Button tweaks: contact form button + others to match theme */
.contact-form button,
button,
.btn,
.nav-capsule,
.download-capsule {
  background: var(--brand-black) !important;
  color: #fff !important;
  border-radius: 50px;
}

.contact-form button:hover,
button:hover,
.btn:hover {
  background: var(--brand-accent) !important;
  color: var(--on-accent) !important;
}

/* Input focus border color -> accent */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-accent) !important;
  box-shadow: 0 0 0 3px rgba(255,106,0,0.08);
}

/* Contact info icon color */
.contact-info i { color: var(--brand-accent) !important; }

.whatsapp-button {
  background-color: #25D366 !important; /* WhatsApp green */
  border-radius: 50px; /* capsule shape */
  color: white;
}
.whatsapp-button:hover {
  background-color: #1ebe5b !important; /* slightly darker green on hover */
}

/* Footer */
footer {
  background: var(--brand-black) !important;
  color: #ffffff !important;
}
footer .social a { color: #fff !important; }
footer .social a:hover { color: var(--brand-accent) !important; }
.developer-credit { color: #cfcfcf !important; }
.developer-credit span { color: var(--brand-accent) !important; }

/* Clientele slider accents (make hover subtle with orange tint) */
.client-logo img { filter: none !important; }
.client-logo:hover { transform: translateY(-6px) !important; }

/* Running tagline: keep dark bar but use accent for bullets if needed */
.running-tagline { background-color: #0f0f0f !important; color: #fff !important; }
.tagline-text { color: #fff !important; }

/* Success popup (change green -> orange to match theme) */
.success-popup {
  background: #fff9f3 !important;
  border: 1px solid rgba(255,106,0,0.15) !important;
  color: var(--brand-accent) !important;
}
.success-popup p { color: var(--brand-accent) !important; }
.checkmark,
.checkmark-circle,
.checkmark-check {
  stroke: var(--brand-accent) !important;
  box-shadow: none !important;
}

/* small tweaks for contrast and readability */
a { color: var(--brand-accent); }
a:hover { color: var(--on-accent); }

/* ensure icons & small elements adopt the theme */
.service-card i, .contact-info i, .download-svg, .icon-download {
  color: var(--brand-accent) !important;
}

/* Responsive: keep original responsive rules, only adjust paddings for small screens */
@media (max-width: 768px) {
  header { padding: 12px 20px !important; }
  .logo img { height: 44px !important; }
  .contact-section, .services-section, .corporate-section, .clientele-section {
    padding: 40px 20px !important;
  }
}
