   /* ===== COLOR VARIABLES ===== */
        :root {
            /* Primary Colors */
            --primary-color: #1a5276;
            --primary-dark: #154360;
            --primary-light: #2e86c1;
            
            /* Secondary Colors */
            --secondary-color: #f39c12;
            --secondary-dark: #d68910;
            --secondary-light: #f8c471;
            
            /* Accent Colors */
            --accent-color: #e74c3c;
            --accent-light: #f5b7b1;
            
            /* Background Colors */
            --bg-light: #f9f9f9;
            --bg-white: #ffffff;
            --bg-dark: #2c3e50;
            --bg-gradient-primary: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
            
            /* Text Colors */
            --text-dark: #2c3e50;
            --text-medium: #566573;
            --text-light: #ffffff;
            --text-accent: #f39c12;
            
            /* Utility Colors */
            --border-color: #eaecee;
            --shadow-color: rgba(46, 134, 193, 0.15);
            --cta-color: #e74c3c;
            --cta-hover: #c0392b;
            --success-color: #27ae60;
        }
        
        /* Reset and basic styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* Container styles */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: relative;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        /* ===== TOP BAR STYLES ===== */
        .top-bar {
            background: var(--bg-dark);
            color: var(--text-light);
            font-weight: 500;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Contact info section */
        .contact-info {
            display: flex;
            gap: 25px;
        }
        
        .contact-info div {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .contact-info i {
            margin-right: 8px;
            color: var(--secondary-color);
            font-size: 15px;
        }
        
        .contact-info a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .contact-info a:hover {
            color: var(--secondary-color);
        }
        
        /* Header right section */
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        /* Social icons section */
        .header-social-icons {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .header-social-icons a {
            color: var(--text-light);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        
        .header-social-icons a:hover {
            background: var(--secondary-color);
            color: var(--text-dark);
            transform: translateY(-2px);
        }
        
        /* User actions section */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .user-actions a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.3s;
            font-size: 14px;
            padding: 5px 0;
            position: relative;
        }
        
        .user-actions a i {
            margin-right: 8px;
            font-size: 14px;
        }
        
        .user-actions a:hover {
            color: var(--secondary-color);
        }
        
        .user-actions a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }
        
        .user-actions a:hover:after {
            width: 100%;
        }
        
        /* Language selector */
        .language-selector {
            position: relative;
        }
        
        .language-selector select {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-light);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .language-selector select:hover {
            border-color: var(--secondary-color);
        }
        
        /* ===== MAIN HEADER STYLES ===== */
        .main-header {
            padding: 15px 0;
            background: var(--bg-white);
            position: relative;
        }
        
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Logo and site title */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            width: 90px;
            height: 90px;
            object-fit: contain;
            border-radius: 50%;
            /** box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .site-titles {
            display: flex;
            flex-direction: column;
        }
        
        .site-title {
            font-family: 'Playfair Display', serif;
            font-size: 35px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        
        .site-description {
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 400;
            margin-top: 3px;
        }
        
        /* Call to action buttons */
        .cta-buttons {
            display: flex;
            gap: 15px;
        }
        
        .cta-buttons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 15px;
        }
        
        .cta-primary {
            background: var(--cta-color);
            color: var(--text-light);
            border: 2px solid var(--cta-color);
        }
        
        .cta-secondary {
            background: transparent;
            color: var(--cta-color);
            border: 2px solid var(--cta-color);
        }
        
        /* Button hover effects */
        .cta-primary:hover {
            background: var(--cta-hover);
            border-color: var(--cta-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
        }
        
        .cta-secondary:hover {
            background: var(--cta-color);
            color: var(--text-light);
            transform: translateY(-3px);
        }
        
        /* Button icon animation */
        .cta-buttons a i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }
        
        .cta-buttons a:hover i {
            transform: scale(1.2);
        }
        
        /* ===== MAIN NAVIGATION STYLES ===== */
        .main-nav {
            background: var(--primary-color);
            position: relative;
        }
        
        .main-nav .container {
            position: relative;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            width: 100%;
            
        }
        
        .nav-menu li {
            position: relative;
        }
        
        /* Main menu items */
        .nav-menu > li > a {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            
            letter-spacing: 0.5px;
        }
        
        .nav-menu a i {
            margin-right: 10px;
            font-size: 16px;
        }
        
        .nav-menu > li:hover > a {
            color: var(--secondary-color);
            background-color: rgba(0,0,0,0.1);
        }
        
        /* Active menu state */
        .nav-menu > li.active > a {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .nav-menu > li.active > a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 3px 3px 0 0;
        }
        
        /* Dropdown menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background-color: var(--bg-white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: none;
            z-index: 1000;
            border-radius: 0 0 8px 8px;
            overflow: hidden;
            padding: 5px 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .nav-menu li:hover .dropdown-menu {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 12px 25px;
            color: var(--text-medium);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            border-left: 3px solid transparent;
        }
        
        .dropdown-menu a:hover {
            background-color: var(--bg-light);
            color: var(--primary-color);
            padding-left: 30px;
            border-left-color: var(--secondary-color);
        }
        
        .dropdown-menu a i {
            color: var(--secondary-color);
            width: 20px;
            text-align: center;
        }
        
        /* Mega menu styles */
        .mega-menu {
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            width: 100%;
            max-width: 1200px;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .mega-menu:hover {
            transform: translateX(-50%) translateY(0);
        }
        
        .mega-menu-column h3 {
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .mega-menu-column ul {
            list-style: none;
        }
        
        .mega-menu-column ul li a {
            padding: 8px 0;
            display: block;
            color: var(--text-medium);
            transition: all 0.3s;
        }
        
        .mega-menu-column ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        /* Mobile menu toggle button - hidden for desktop */
        .mobile-menu-btn {
            display: none;
        }
        
        /* Search bar in navigation */
        .nav-search {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .nav-search input {
            padding: 8px 15px;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            outline: none;
            transition: all 0.3s;
            width: 200px;
        }
        
        .nav-search input:focus {
            border-color: var(--secondary-color);
            width: 250px;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1200px) {
            .contact-info {
                gap: 15px;
            }
            
            .header-right {
                gap: 15px;
            }
            
            .nav-menu > li > a {
                padding: 18px 15px;
                font-size: 15px;
            }
        }
        
        goog-te-gadget img {
    display: none;
}

.goog-te-gadget-simple {
    border-radius: 5px;
    background-color: #1A1A2E;
    border-left: 1px solid #ffffff;
    border-top: 1px solid #fafafa;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #f8f8f8;
    font-size: 10pt;
    display: inline-block;
    padding-top: 1px;
    padding-bottom: 2px;
    cursor: pointer;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    color: white;
    text-decoration: none;
    border-left: 0px;
}
.goog-te-gadget-icon {
    display: none;
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    color: white;
}
      
      .logo-link {
  text-decoration: none;
  color: inherit;
}

