/*--------------------------------------------------------------
# Font & Color Variables

--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #342c26; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c1607; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e96308; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
:root{
  --primary:#6a11cb;
  --secondary:#2575fc;
  --accent:#ff5fa2;
  --primary: #0a2a4a;
  --secondary: #1e90ff;
  --success: #25D366;
  --bg-light: #f4f7fb;
  --text-dark: #333;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  index css */

.section {
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 20px;
}


@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.hero-section {
  position: relative;
  padding: 160px 0 120px;
  background: linear-gradient(
    135deg,
    #00303f 0%,
    #00303f 40%,
    #00303f 70%,
    #00303f 100%
  );
  color: #fff;
  overflow: hidden;
}

/* DESKTOP & LAPTOP */
@media (min-width: 992px) {
  .mega-menu {
    max-height: none !important;
    overflow: visible !important;
  }

  .mega-menu .mega-scroll {
    max-height: none !important;
    overflow: visible !important;
  }
}

/* MOBILE & TABLET */
@media (max-width: 991px) {
  .mega-menu .mega-scroll {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

/* Decorative circle */
.hero-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  top: -200px;
  left: -200px;
}

/* CONTENT */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-title span {
  color: #ffeb3b;
}

.hero-tagline {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

/* LOGOS */
.hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.hero-logos img {
  height: 70px;
  padding: 10px 15px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-buttons .btn-primary {
  background: #ffeb3b;
  border: none;
  color: #0d2c6c;
  font-weight: 600;
}

.hero-buttons .btn-primary:hover {
  background: #ffe000;
}

.hero-buttons .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}

.hero-buttons .btn-outline-light:hover {
  background: #fff;
  color: #0d2c6c;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-logos img {
    height: 60px;
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-section { text-align: center; padding: 90px 0; }
  .glass { padding: 1.8rem; }
}

.section-title {
    font-weight: 700;
    color: #1f3c88;
}
.card:hover {
    transform: translateY(-5px);
    transition: .3s;
}


/* index about */
/* Font */
.about-section {
  background-color: #f9fafb;
  font-family: 'Poppins', sans-serif;
  color: #343a40; /* Dark gray for main text */
}

/* Subtitle styling */
.about-section .subtitle {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #0d6efd; /* Bootstrap primary blue */
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Title styling */
.about-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c; /* Deep Blue */
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Paragraph styling */
.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #495057; /* Slightly lighter dark for better readability */
}

/* Right content box */
.about-section .about-box {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Right content heading */
.about-section .about-box h5 {
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* List styling */
.about-section .about-list {
  list-style: none;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.about-section .about-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #495057;
}

/* Custom checkmark bullets */
.about-section .about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

/* Horizontal rule */
.about-section hr {
  border: none;
  border-top: 1px solid #dee2e6;
  margin: 1.5rem 0;
}

/* Bold labels in paragraphs */
.about-section p strong {
  color: #1a2a6c;
}

/* Slogan styling */
.about-section .slogan {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.25rem;
  color: #343a40;
}

.about-section .slogan span {
  color: #0d6efd;
  font-style: italic;
}

/* Responsive typography tweak */
@media (max-width: 767.98px) {
  .about-section .title {
    font-size: 2rem;
  }
}


/* OUR COMPANIES SECTION */
#companies {
  background: linear-gradient(135deg, #f8f9fa, #eef3f8);
}
.engcomHeading{color:#00303f}

/* Card Base Style */
#companies .card {
  border: none;
  border-radius: 14px;
  transition: transform 0.4s ease, 
              box-shadow 0.4s ease, 
              background-color 0.4s ease;
  background-color: #ffffff;
  overflow: hidden;
}

/* Card Body */
#companies .card-body {
  transition: color 0.4s ease;
}

/* Hover Effect */
#companies .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #00303f, #0e627c);
}

/* Title Hover */
#companies .card:hover .card-title {
  color: #ffffff;
}

/* Text Hover */
#companies .card:hover .card-text {
  color: #e6ecff;
}

/* Card Title */
#companies .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f3c88;
  transition: color 0.4s ease;
}

/* Card Text */
#companies .card-text {
  font-size: 0.95rem;
  color: #555555;
  transition: color 0.4s ease;
}

/* Section Headings */
#companies h4 {
  border-left: 5px solid #1f3c88;
  padding-left: 12px;
}

/* COMPANY LINK */
.company-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Hover Cursor */
.company-link:hover {
  text-decoration: none;
}

/* Optional Pointer Cursor */
.company-link .card {
  cursor: pointer;
}


/* GALLERY SECTION */
#gallery {
  background: linear-gradient(135deg, #f8f9fa, #eef3f8);
}

/* Subtitle */
.section-subtitle {
  max-width: 750px;
  margin: auto;
  color: #555;
  font-size: 1rem;
}

/* FILTER BUTTONS */
.filter-btn {
  background: #fff;
  border: 2px solid #1f3c88;
  color: #1f3c88;
  padding: 8px 18px;
  margin: 4px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0b2c6a;
  color: #fff;
}

/* GALLERY ITEM */
.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 48, 63, 0.9);;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  border-radius: 16px;
  transition: opacity 0.4s ease;
  padding: 15px;
}

.gallery-item figure {
  position: relative;
  overflow: hidden;
}

.gallery-item:hover .overlay {
  opacity: 1;
}


/* POLICY BANNER */
.policy-banner {
  background: linear-gradient(135deg, #ffffff, #f5f7fb);
  padding: 80px 20px;
  border-bottom: 1px solid #e6e9f0;
}

/* TITLE */
.policy-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0b2c6a;
  margin-bottom: 12px;
}

/* UNDERLINE */
.policy-line {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #f57c00;
  margin: 0 auto 20px;
  border-radius: 3px;
}

/* SUBTITLE */
.policy-subtitle {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}


.reviews-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
  }

  .reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .reviews-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #333;
  }

  .reviews-intro {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
  }

  .reviews-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .review {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .reviewer-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
  }

  .review-rating {
    font-size: 1em;
    color: #FFD700; /* Gold stars */
  }

  .review-text {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .reviews-wrapper {
      flex-direction: column;
      align-items: center;
    }
  }

  #contact a{
  text-decoration:none;
}

#contact .btn-success{
  background:#25d366;
  border:none;
}

#contact .btn-success:hover{
  background:#1ebe5d;
}

.services-section .service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.services-section h5 a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 700;
}

.services-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.services-section ul li {
  margin-bottom: 8px;
}

.services-section ul li a {
  text-decoration: none;
  color: #333;
}

.services-section ul li a:hover {
  color: #0d6efd;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    z-index: 1000;
}
.whatsapp-float:hover {
    color: #fff;
    background: #1ebe5d;
}

/*   end index css */



.hero {
      background: linear-gradient(135deg, #0d6efd, #084298);
      color: #fff;
      padding: 110px 0 90px;
    }

    .section-padding {
      padding: 70px 0;
    }



 /* Arjuna Technology */
     /* Navbar */
    .navbar-brand {
      font-weight: 700;
      letter-spacing: 1px;
      font-size: 30px;
    }

    
    /* Hero */
    .Arjuna-hero {
      background: linear-gradient(120deg, #0d6efd, #5dade2);
      color: #fff;
      padding: 130px 0;
    }
    .Arjuna-hero h1 {
      font-weight: 700;
    }

    /* Section */
    section {
      padding: 80px 0;
    }
    .section-title {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .section-subtitle {
      color: #666;
      max-width: 750px;
      margin: auto;
    }

    /* Cards */
    .service-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    /* Why Us */
    .why-box {
      background: #f8f9fa;
      border-radius: 15px;
      padding: 30px;
      height: 100%;
    }

    /* Gallery */
    .gallery img {
      border-radius: 15px;
      transition: 0.3s;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      background: #0d6efd;
      color: #fff;
    }


      .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.whatsapp-btn{
    position:fixed;
    bottom:20px;left:20px;
    background:#25D366;
    color:#fff;
    padding:15px;border-radius:50%;
    font-size:22px;z-index:999;
}



/* ===== MEGA MENU CORE ===== */
.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
}

@media (min-width: 992px) {
  .mega-dropdown:hover .mega-menu,
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.mega-menu .container {
  max-width: 1400px;
}

.mega-menu h6 {
  font-weight: 700;
  color: #0d6efd;
  margin-top: 15px;
}

.mega-menu ul {
  list-style: none;
  padding-left: 0;
}

.mega-menu ul li a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

.mega-menu ul li a:hover {
  color: #0d6efd;
  padding-left: 5px;
}

.mega-scroll {
  max-height: 520px;
  overflow-y: auto;
}

/* Mobile fix */
@media (max-width: 991px) {
  .mega-menu {
    position: relative;
    border: none;
  }
}


/* NAVBAR */
.navbar{
  background:#fff;
  box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.navbar-brand span{font-weight:700;color:var(--);}

/* HERO */
.hero{
  background:linear-gradient(135deg,var(--primary),var(--accent),var(--secondary));
  color:#fff;
  padding:140px 0;
  border-bottom-left-radius:120px;
}
.hero h1{font-size:3rem;font-weight:700}

/* MEGA MENU */
.mega-menu{
  width:100%;
  left:0;
  right:0;
  padding:30px;
}
.mega-menu h6{
  font-weight:600;
  color:var(--primary);
}
.mega-menu a{
  display:block;
  text-decoration:none;
  color:#333;
  font-size:14px;
  margin-bottom:6px;
}
.mega-menu a:hover{color:var(--primary);}


.page-header {
      background: linear-gradient(120deg, #0d6efd, #5dade2);
      color: #fff;
      padding: 70px 0;
    }

    .service-content {
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .sidebar {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .service-link {
      display: block;
      padding: 12px 15px;
      margin-bottom: 10px;
      border-radius: 8px;
      text-decoration: none;
      color: #333;
      background: #f1f4f8;
      font-weight: 500;
      transition: 0.3s;
    }

    .service-link:hover,
    .service-link.active {
      background: #0d6efd;
      color: #fff;
    }

    ul li {
      margin-bottom: 8px;
    }


    #scrollTop{
    position:fixed;
    bottom:20px;right:20px;
    background:var(--accent);
    padding:12px 15px;
    border-radius:50%;
    display:none;cursor:pointer;
}


footer{background:#111;color:#ccc;}
footer{
  background:#1b1b1b;
  color:#ccc;
  padding:40px 0;
}

.footer-bottom{
  background:#0f172a; /* dark professional */
  padding:15px 0;
  font-size:14px;
  color:#cbd5e1;
}

.footer-bottom .sitename{
  font-weight:600;
  color:#ffffff;
}

.footer-bottom .credits a{
  color:#38bdf8;
  text-decoration:none;
  font-weight:500;
}

.footer-bottom .credits a:hover{
  text-decoration:underline;
}

/* =====================
   ABOUT SECTION
===================== */
.aboutza-section {
  background: linear-gradient(180deg, var(--bg-light), #fff);
  padding: 5rem 1.2rem;
}

.aboutza-container {
  max-width: 1200px;
  margin: auto;
}

.aboutza-header {
  text-align: center;
  margin-bottom: 3rem;
}

.aboutza-footer {
  text-align: center;
  margin-bottom: 3rem;
  
}

.section-tag {
  background: rgba(30,144,255,.1);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .9rem;
}

.glass {
  background: rgba(255,255,255,.95);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* =====================
   COMMITMENT
===================== */
.commitment {
  margin-top: 4rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem;
}

.commitment-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
  font-weight: 500;
}

/* =====================
   MISSION & VISION
===================== */
.mission-vision {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.8rem;
}

.info-card {
  background: #fff;
  padding: 2rem;
  border-left: 5px solid var(--secondary);
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

/* about end */


/* =====================
   HERO SECTION about page
===================== */
.heroza-section {
  background: linear-gradient(rgba(11,44,77,.9), rgba(11,44,77,.9)),
              url('hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
}

.heroza-title {
  font-size: 3rem;
  font-weight: 700;
}

.heroza-text {
  max-width: 520px;
}

.hero-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
}