/* ===================== RESET & BASE STYLES ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f9fc;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== HEADER ===================== */
header {
  background-color: #000000;
  padding: 15px 0;
  color: #2cc6ec;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img{
  border-radius: 60px;
  width: 50%;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #24e5f3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color:  rgb(90, 173, 241);
}

.btn-primary {
  background-color: rgb(90, 173, 241);
  color: #000000;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #1a87ec;
}

/* ===================== HAMBURGER MENU ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  order: 2;
  margin-left: auto;
}

.hamburger:focus {
  outline: none;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===================== HERO SECTION ===================== */

.tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd966;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: white;
  color: rgb(17, 15, 15);
  text-decoration: none;
}

/* ===================== FEATURES ===================== */
.features {
  padding: 60px 0 40px;
  text-align: center;
}

.features h2 {
  font-size: 2.8rem;
  color: rgb(9, 12, 12);
  margin-bottom: 40px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 3rem;
  color: #1caaec;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #212f3d;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
}

/* ===================== SEARCH INFO ===================== */
.search-info {
  background-color: #ffffff;
  color: rgb(43, 26, 26);
  padding: 50px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 60px auto 80px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

.search-info h2 {
  color: rgb(221, 28, 28);
}

.btn-link {
  display: inline-block;
  background: #494141;   
  color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-link:hover {
  background: #eee;
  color: rgb(221, 28, 28);   /* slightly lighter/darker hover effect */
}

/* ===================== FOOTER ===================== */
footer {
  background-color: #222;
  color: #eee;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.footer {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-head {
  color: #fff;
  margin-bottom: 10px;
}

.contacts {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-content a {
  color: #ffd966;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.career-slider{
  display: none;
}

.contact-info {
  margin-bottom: 10px;
}

.social-icons a {
  margin: 0 12px;
  font-size: 1.4rem;
  color: white;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd966;
}
/* ===================== RESPONSIVE ===================== */


@media (max-width: 768px) {
  nav {
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #191d22;
    flex-direction: column;
    padding: 1rem;
    max-height: 0;
    transition: max-height 0.3s ease;
    width: 80%;
    order: 3;
    display: none;
    
  }

  .nav-links.open {
    max-height: 500px;
    display: flex;
  }

  .nav-links a {
    margin: 15px 0;
    padding: 10px 20px;
  }


  .hero-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-buttons a {
    margin: 8px 0;
    width: 80%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-info {
    font-size: 1rem;
    padding: 30px 15px;
  }
} 

/* =========================================
   WEBGROW STUDIO - NEW WEBSITE POPUP
========================================= */

.webgrow-popup {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 350px;
    max-width: calc(100% - 40px);

    background: #ffffff;
    border-radius: 18px;

    padding: 24px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.18);

    z-index: 99999;

    display: none;

    animation: webgrowPopupIn 0.45s ease forwards;
}

.webgrow-popup-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f8f3;
    border-radius: 12px;

    font-size: 23px;

    margin-bottom: 15px;
}

.webgrow-popup-content h3 {
    margin: 0 0 8px;

    font-size: 20px;
    font-weight: 700;

    color: #111111;
}

.webgrow-popup-content p {
    margin: 0 0 12px;

    font-size: 14px;
    line-height: 1.6;

    color: #666666;
}

.webgrow-popup-content .popup-question {
    color: #222222;
    font-weight: 600;

    margin-bottom: 18px;
}

.webgrow-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.webgrow-popup-buttons button {
    width: 100%;

    border: none;
    border-radius: 9px;

    padding: 11px 15px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

/* Preview button */

.popup-preview-btn {
    background: #111111;
    color: #ffffff;
}

.popup-preview-btn:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

/* Not now */

.popup-later-btn {
    background: transparent;
    color: #777777;
}

.popup-later-btn:hover {
    background: #f5f5f5;
    color: #222222;
}

/* Close button */

.webgrow-popup-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 30px;
    height: 30px;

    border: none;
    background: transparent;

    color: #999999;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    border-radius: 50%;

    transition: all 0.2s ease;
}

.webgrow-popup-close:hover {
    background: #f2f2f2;
    color: #222222;
}

/* Animation */

@keyframes webgrowPopupIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
 
}

/* Mobile */

@media (max-width: 480px) {

    .webgrow-popup {
        right: 15px;
        bottom: 15px;

        width: auto;
        max-width: none;

        left: 15px;

        padding: 20px;
    }

}

@media (max-width: 480px) {


  nav a {
    font-size: 1rem;
  }

  .career-slider{
    display: block;
  }
}

.social-logo{
  margin: 16px;
  gap:7px;
  font-family: Arial, sans-serif;
  font: bolder;
  font-size: xx-large;
  text-align: center;
  color:rgb(221, 28, 28) ;
}

#facebook-logo{
  color:#4c62ac; 
  margin-right: 15px;  
  text-decoration: none;
}

#facebook-logo:hover{
  color: #eee;
  background-color:#4c62ac;
  border-radius: 15%;
}

#twitter-logo{
  color:rgb(0, 195, 255); 
  margin-right: 15px;
  text-decoration: none;
}

#twitter-logo:hover{
  color: #eee;
  background-color: rgb(0, 195, 255) ;
  border-radius: 15%;
}

#tiktok-logo{
  color: #000000;
  margin-right: 15px;
  text-decoration: none; 
}

#tiktok-logo:hover{
  color: rgb(6, 6, 7);
  background-color:#2e94d8;
  border-radius: 15%; 
  border:9px #1a87ec;
}

#instagram-logo{
  color:#c0200b; 
  margin-right: 15px;
  text-decoration: none;
}

#instagram-logo:hover{
  color: #eee;
  background-color: #c0200b;
  border-radius: 15%;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===============NEW REFERRER ================= */
.referrer {
  text-align: center;
  padding: 3rem 1rem;
}

.referrer h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #c0200b;
}

.referrer p {
  margin-bottom: 2rem;
  color: #555;
}

.referrer h4 {
  margin-bottom: 2rem;
  color: #555;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-cards .card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.feature-cards .card:hover {
  transform: translateY(-5px);
}

.cta .btn {
  background: #690b0b;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background: #a01010;
}

