



/* Loader overlay-բեռնիչ */


#loader {
  position: fixed;
  top:0; left:0;
  width:100vw;
  height:100vh;
  background: rgba(0,0,0,0.7); /* թափանցիկ մուգ ֆոն */
  display:flex;
  justify-content:center;
  align-items:center;
  z-index: 2000;
  opacity:1;
  transition: opacity 0.8s ease;
}

.spinner-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.loading-logo {
  position: relative;
  width: 100px;
  height: 90px;
  z-index:2;
}

/* Պտտվող օղակ՝ նոր գույնով */
.loader {
  border: 8px solid rgba(255,255,255,0.3); /* թեթև շեշտային ֆոն */
  border-top: 8px solid #40e199; /* քո կանաչ գույնը */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  z-index:1;
  animation: spin 1.2s linear infinite;
  
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
 





  /* nav.css  նավիգացիոն մենյու*/

:root{
  --accent: rgb(38, 236, 170);
  --text: #12067b;
  --nav-border:  rgba(7, 7, 90, 0.6);
}

.site-nav{
  position: fixed;
  position:  !important;     /* ← sticky-ի փոխարեն fixed */
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;         /* ← ավելացրու */
  z-index: 1000;
  background: rgb(51, 204, 153);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);

 
}

.nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.nav-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-brand .brand-text{
  font-size: 16px;
  font-weight: 700;
   color: var(--text);
}

.nav-menu{
  display: flex;
  gap: 16px;
  margin-left: auto;
  list-style: none;

}

.nav-menu .nav-link{
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  transition: 0.2s;
}

.nav-menu .nav-link:hover{
  background: rgba(10, 3, 105, 0.1);
      color: var(--accent);
}
/* ====== ՆԱՎԲԱՐԻ ՖՈՆԸ ՄՆՈՒՄ Է, ԲԱՅՑ ՄԻԱՅՆ ՏԵՔՍՏ + ՈՍԿԵԳՈՒՅՆ ԵՐԻԶ HOVER-ԻՆ ====== */
.site-nav {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: rgb(51, 204, 153) !important;   /* ֆոնը մնում է */
  border-bottom: none !important;
  box-shadow: none !important;               /* ստվերը հանում ենք */
  backdrop-filter: none !important;
  z-index: 1000;
  padding: 12px 0;
}

/* Տեքստերը */
.nav-menu .nav-link {
  color: var(--text);
  font-weight: 600;
  padding: 10px 22px;           /* մի փոքր տեղ տալիս ենք երիզին */
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Hover և Active – միայն ոսկեգույն փայլող երիզ */
.nav-menu .nav-link::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  background: linear-gradient(90deg,
    transparent,
    #ead252,
    #f4d03f,
    #ffd700,
    #f4d03f,
    #ead252,
    transparent
  );
  background-size: 200% 200%;
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: 0 0 20px #ead252, 0 0 35px rgba(234,210,82,0.8);
  animation: shimmer 4s linear infinite paused;
  transition: opacity 0.4s ease;
}

.nav-menu .nav-link:hover::before,
.nav-menu .nav-link.active::before {
  opacity: 1;
  animation-play-state: running;
}

/* Hover-ի ժամանակ տեքստը դառնում է սպիտակ կամ ոսկեգույն */
.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: #ffffff !important;
}

/* Շարժման անիմացիա */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
/* Hamburger գեղեցիկ 3 գիծ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-line {
  width: 28px;
  height: 3px;
  background: #12067b;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger → X փոխակերպում */
.nav-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* Mobile */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .brand-text { display: none; }

  .nav-menu {
    position: fixed;
    top: 74px;            /* նավբարի բարձրությանը համապատասխան */
    left: 0; right: 0;
    background: rgb(51, 204, 153);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-menu.show {
    max-height: 500px;    /* բավական է բոլոր կետերի համար */
      opacity: 1;
    transform: translateY(0);
    pointer-events: all;            /* միայն հիմա է թույլատրվում սեղմել */
  }
  
  /* Անիմացիա՝ հղումները մեկ առ մեկ հայտնվում են */
  .nav-menu.show .nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu.show .nav-link:nth-child(1) { transition-delay: 0.2s; }
  .nav-menu.show .nav-link:nth-child(2) { transition-delay: 0.3s; }
  .nav-menu.show .nav-link:nth-child(3) { transition-delay: 0.4s; }
  .nav-menu.show .nav-link:nth-child(4) { transition-delay: 0.5s; }
  .nav-menu.show .nav-link:nth-child(5) { transition-delay: 0.6s; }
  
}
/* Hamburger */
.nav-toggle{
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after{
  width: 26px;
  height: 3px;
  background: var(--text);
  display: block;
  border-radius: 3px;
  transition: 0.2s;
  position: relative;
}

.hamburger::before,
.hamburger::after{
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before{
  top: -8px;
}
.hamburger::after{
  top: 8px;
}
.site-nav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, 
    transparent, 
    #ead252, 
    #f4d03f, 
    #ffd700, 
    #f4d03f, 
    #ead252, 
    transparent
  );
  background-size: 200% 100%;
  border-radius: 10px;
  box-shadow: 
    0 0 10px #ead252,
    0 0 20px #f4d03f,
    0 0 30px rgba(234, 210, 82, 0.6);
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ==================== MOBILE – ՆՈՒՅՆ ԴԻԶԱՅՆԸ, ԻՆՉ ԴԵՍՔԹՈՓՈՒՄ ==================== */
@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    
  }

  .brand-text {
    display: none;
  }

  /* Մենյուն բացվում է ամբողջ էկրանով, բայց նույն ոճով */
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgb(51, 204, 153);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }

  .nav-menu.show {
    max-height: 600px;   /* բավական է բոլոր կետերի համար */
  }

  /* Կետերը մոբայլում նույն ոսկեգույն երիզով */
  .nav-link {
    color: #12067b;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 16px 40px;           /* ավելի մեծ դիպչելու համար */
    width: 80%;
    text-align: center;
    border-radius: 16px;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff !important;
  }

  /* Կարևոր է՝ մոբայլում էլ աշխատի ::before երիզը */
  .nav-link::before {
    background-size: 200% 200%;
    border-radius: 18px;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
  }
}
@media (max-width: 880px) {
  .nav-menu {
    display: none !important;        /* ← փակ վիճակում ընդհանրապես չի երևում */
  }
  .nav-menu.show {
    display: flex !important;        /* ← բացվելիս երևում է */
  }
}
 /* nav.css  ավարտը*/






/* --- Global --- */
body {
  
   font-family: 'Roboto', sans-serif;
    margin-top:20px; 
    background:#f4f7fb;
     color:#212223; }
     /* --- Loader Փափուկ անցում --- */
      padding-top: 100px !important;   /* կամ 100px, եթե navbar-ը բարձր է */

     @media (max-width: 768px) {
    body {
        background: #f4f7fb; /* Mobile — այստեղ է խնդիրը */
        body {
  padding-top: 100px !important;        /* նավբարի բարձրությունը */
  margin-top: 550px !important;         /* ← այս տողը ավելացրու!!! */
}
    }
}
html, body {
    background: #f4f7fb; !important;
    margin: 0;
    padding: 0;
    height: 100%;
}
h1,h2,h3 { 
  color:#003c80;
 }
a { 
  text-decoration:none; 
  color:#004a91; 
}
ul { 
  list-style:none;
   padding:0; 
   margin:0; 
  }

/* --- Header --- */

body {
   font-family: 'Noto Sans Armenian', 'Roboto', sans-serif;
  margin: 0; /* Հեռացնում է էջի լռելյայն բացվածքները */
  padding: 0;
   color: var(--dark);
      line-height: 1.7;
      
}
 .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 20px;
    }

header {
    background: linear-gradient(135deg, var(--primary), var(--gray));
  background: rgb(51, 204, 153);
  display: flex;
  flex-direction: column;
  align-items: center;
            text-align: center;
      padding: 60px 20px;
      border-bottom: 6px solid var(--secondary);
      position: relative;
      overflow: hidden;
      margin-top: 15px;/*լոգոն մենյու բառից մի քիչ ներքև*/
            }


    @keyframes wave {
      0% { background-position: 0 0; }
      100% { background-position: 100px 0; }
    }

.header-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.logo {
  width: 380px;
  height: 380px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  width: 102%;
  height: 102%;
  border: 4px solid #ead252;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(234,210,82,0.6);
}

.logo::after {
  content: '';
  position: absolute;
  width: 108%;
  height: 108%;
  border: 2px solid rgba(64,225,153,0.4);
  border-radius: 50%;
}

.logo img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: 50%;
  
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
  h1 {
      
      font-size: 2.8rem;
      margin-bottom: 10px;
      text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }
.badge {
      display: inline-block;
      background: var(--secondary);
      color: white;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.9rem;
      margin-top: 15px;
      font-weight: 600;
    }
  

/* --- Hero / Typewriter --- շարժական տող*/
.hero { 
  height:150px;
   display:flex; 
   justify-content:center; 
   align-items:center; 
   font-size:34px;
    color:#0c1b18; 
    font-weight:bold; 
  }
/* Mobile Responsive Fix */
@media (max-width: 576px) {
  .hero {
    font-size: 18px !important;
    height: auto !important;
    padding: 10px;
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
  }

  body {
    overflow-x: hidden !important;
    
  }
}




   
/* --- Card sections --- */
.card-section { 
  display:flex;
   flex-wrap:wrap;
    justify-content:center;
     gap:40px;
      padding:30px;
       gap: 40px 10px;
     
     }
    
 .card-link {
      text-decoration: none;
      color: inherit;
          max-width: 320px;
      min-width: 5;
      flex: 0 1 calc(20% - 30px);   /* 30px = gap-ի չափը */
      max-width: calc(20% - 30px);
      
    }

.card {
   background:rgb(51, 204, 153);
    padding:20px; 
    border-radius:10px;
     box-shadow:0 4px 10px rgba(0,0,0,0.1);
      width:280px;
       transition:transform 0.3s;
          text-align: center;  
          /* Հավասար բարձրության հնարքը */
      display: flex;
      flex-direction: column;
      height: 90%;           /* ← ամենակարևորը */
      
    }
    

      .card:hover { 
  transform:translateY(-10px); 
    cursor: pointer;
    transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.18);
      background-color:#ead252; /* Hover-ի ժամանակ գույն */
  cursor: pointer; /* Ցույց է տալիս, որ սեղմվող է */
}

    .card img {
     
      width: 110px;
      height: 100px;
      margin: 0 auto 20px;
      object-fit: contain;
    }
    
    .card-body {
      flex-grow: 1;                    /* ← ձգվում է ամբողջ մնացած տեղը */
      display: flex;
      flex-direction: column;
      justify-content: center;

    }
    
    .card-body h2 {
      margin: 0;
      font-size: 1.4rem;
      color: #0e0360;
      font-weight: 600;
    }
    

/* ✅ Tablet */

    @media (max-width: 1200px) {
      .card-link { flex: 0 1 calc(33.333% - 30px); max-width: calc(33.333% - 30px); } /* 3 քարտ */
    }
    @media (max-width: 800px) {
      .card-link { flex: 0 1 calc(50% - 30px); max-width: calc(50% - 30px); } /* 2 քարտ */
    }
    @media (max-width: 500px) {
      .card-link { flex: 0 1 100%; max-width: 100%; }
    }
/* --- Gallery --- */
.gallery-section { 
  padding:30px;
   text-align:center;
   
   }
.gallery {
   display:flex;
    flex-wrap:wrap;
     justify-content:center;
      gap:15px;
       
    }
.gallery img {
   width:650px;
    border-radius:45px; 
    cursor:pointer;
     transition: transform 0.9s;
     }
.gallery img:hover {
   transform:scale(1.05); 
  }   /* ✅ Ավելացված փակող փակագիծ */

/* --- Contact --- */
.contact-section { padding:30px; text-align:center; }
.contact-section form {
  display:flex;
  flex-direction:column;
  gap:15px;
  max-width:400px;
  margin:0 auto;
  
}
.contact-section input,
.contact-section textarea {
  padding:10px;
  border-radius:5px;
  border:1px solid #ccc;
  width:100%;
  box-sizing:border-box;
}
.contact-section button {
  background:rgb(51, 204, 153);
  color:white;
  padding:10px;
  border:none;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;
}
.contact-section button:hover { background:#ead252;}

.social-links {
  margin-top:15px;
  display:flex;
  justify-content:center;
  gap:15px;
}
.social-links img {
  width:40px;
  height:40px;
  transition: transform 0.3s;
}
.social-links img:hover { 
  transform:scale(1.1);
 }
 /* Հեռախոսային էկրաններ (մինչև 600px լայնություն) */
@media only screen and (max-width: 600px) {
    body {
        font-size: 14px; /* Փոքր տեքստ հեռախոսի համար */
        background-color:rgb(51, 204, 153); /* Փիրուզագույնը պահպանվում է */
    }
    .container {
        width: 100%; /* Լայնությունը 100% է */
        padding: 10px; /* Ներքին լիցք */
    }
    img {
        max-width: 100%; /* Նկարները հարմարվում են էկրանին */
        height: auto;
    }
}
 .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .header {
    flex-direction: column; /* Տարրերը դասավորել ուղղահայաց */
    text-align: center;
  }
}
